nixpkgs/pkgs/shells/fish/default.nix

36 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, ncurses, python27, which, groff, gettext, man_db, bc }:
2013-06-04 11:20:30 +02:00
stdenv.mkDerivation rec {
name = "fish-${version}";
version = "2.1.0";
2013-06-04 11:20:30 +02:00
src = fetchurl {
url = "http://fishshell.com/files/${version}/${name}.tar.gz";
sha256 = "0i7h3hx8iszli3d4kphw79sz9m07f2lc2c9hr9smdps5s7wpllmg";
2013-06-04 11:20:30 +02:00
};
buildInputs = [ ncurses ];
2013-06-04 11:20:30 +02:00
# Required binaries during execution
# Python27: Autocompletion generated from manpages and config editing
propagatedBuildInputs = [ python27 which groff gettext man_db bc ];
2013-06-04 11:20:30 +02:00
postInstall = ''
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"
sed -i "s|nroff |${groff}/bin/nroff |" "$out/share/fish/functions/__fish_print_help.fish"
sed -e "s|gettext |${gettext}/bin/gettext |" \
-e "s|which |${which}/bin/which |" \
-i "$out/share/fish/functions/_.fish"
sed -i "s|Popen(\['manpath'|Popen(\['${man_db}/bin/manpath'|" "$out/share/fish/tools/create_manpage_completions.py"
'';
2013-09-25 22:08:40 +02:00
meta = with stdenv.lib; {
description = "Smart and user-friendly command line shell";
homepage = "http://fishshell.com/";
2013-09-25 22:08:40 +02:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ ocharles ];
2013-06-04 11:20:30 +02:00
};
2013-10-30 14:59:38 +01:00
}