2015-02-18 07:14:36 +01:00
|
|
|
{ stdenv, fetchurl, ncurses, python, which, groff, gettext, man_db, bc, libiconv }:
|
2013-06-04 11:20:30 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-02-05 00:12:39 +01:00
|
|
|
name = "fish-${version}";
|
2015-03-05 01:55:45 +01:00
|
|
|
version = "2.1.2";
|
2013-06-04 11:20:30 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-02-05 00:12:39 +01:00
|
|
|
url = "http://fishshell.com/files/${version}/${name}.tar.gz";
|
2015-03-05 01:55:45 +01:00
|
|
|
sha256 = "1pgnz5lapm4qk48a13k9698jaswybzlbz2nyc621d852ldf0vhn6";
|
2013-06-04 11:20:30 +02:00
|
|
|
};
|
|
|
|
|
2015-02-18 07:14:36 +01:00
|
|
|
buildInputs = [ ncurses libiconv ];
|
2013-06-04 11:20:30 +02:00
|
|
|
|
2014-02-05 00:12:39 +01:00
|
|
|
# Required binaries during execution
|
2014-06-30 20:39:02 +02:00
|
|
|
# Python: Autocompletion generated from manpages and config editing
|
|
|
|
propagatedBuildInputs = [ python which groff gettext man_db bc ];
|
2013-06-04 11:20:30 +02:00
|
|
|
|
2013-09-25 22:15:24 +02:00
|
|
|
postInstall = ''
|
2014-02-05 00:12:39 +01:00
|
|
|
sed -i "s|bc|${bc}/bin/bc|" "$out/share/fish/functions/seq.fish"
|
|
|
|
sed -i "s|which |${which}/bin/which |" "$out/share/fish/functions/type.fish"
|
2013-09-25 22:15:24 +02:00
|
|
|
sed -i "s|nroff |${groff}/bin/nroff |" "$out/share/fish/functions/__fish_print_help.fish"
|
|
|
|
sed -e "s|gettext |${gettext}/bin/gettext |" \
|
2014-02-05 00:12:39 +01:00
|
|
|
-e "s|which |${which}/bin/which |" \
|
2013-09-25 22:15:24 +02:00
|
|
|
-i "$out/share/fish/functions/_.fish"
|
2014-02-05 00:12:39 +01:00
|
|
|
sed -i "s|Popen(\['manpath'|Popen(\['${man_db}/bin/manpath'|" "$out/share/fish/tools/create_manpage_completions.py"
|
2014-05-20 15:36:10 +02:00
|
|
|
sed -i "s|/sbin /usr/sbin||" \
|
|
|
|
"$out/share/fish/functions/__fish_complete_subcommand_root.fish"
|
2013-09-25 22:15:24 +02:00
|
|
|
'';
|
|
|
|
|
2013-09-25 22:08:40 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Smart and user-friendly command line shell";
|
2014-02-05 00:12:39 +01:00
|
|
|
homepage = "http://fishshell.com/";
|
2013-09-25 22:08:40 +02:00
|
|
|
license = licenses.gpl2;
|
2014-09-16 09:04:55 +02:00
|
|
|
platforms = platforms.unix;
|
2014-02-05 00:12:39 +01:00
|
|
|
maintainers = with maintainers; [ ocharles ];
|
2013-06-04 11:20:30 +02:00
|
|
|
};
|
2013-10-30 14:59:38 +01:00
|
|
|
}
|