nixpkgs/pkgs/shells/fish/default.nix

65 lines
2.7 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, ncurses, nettools, python, which, groff, gettext, man_db,
bc, libiconv, coreutils, gnused, kbd }:
2013-06-04 09:20:30 +00:00
stdenv.mkDerivation rec {
name = "fish-${version}";
2015-07-12 13:33:01 +00:00
version = "2.2.0";
2013-06-04 09:20:30 +00:00
patches = [ ./command-not-found.patch ];
2013-06-04 09:20:30 +00:00
src = fetchurl {
url = "http://fishshell.com/files/${version}/${name}.tar.gz";
2015-07-12 13:33:01 +00:00
sha256 = "0ympqz7llmf0hafxwglykplw6j5cz82yhlrw50lw4bnf2kykjqx7";
2013-06-04 09:20:30 +00:00
};
# builtin_status has been upstreamed https://github.com/fish-shell/fish-shell/pull/2636
patches = [ ./etc_config.patch ./builtin_status.patch ];
buildInputs = [ ncurses libiconv ];
2013-06-04 09:20:30 +00:00
# Required binaries during execution
# Python: Autocompletion generated from manpages and config editing
propagatedBuildInputs = [ python which groff gettext ]
++ stdenv.lib.optional (!stdenv.isDarwin) man_db
++ [ bc coreutils ];
2013-06-04 09:20:30 +00:00
postInstall = ''
sed -e "s|expr|${coreutils}/bin/expr|" \
-e "s|if which unicode_start|if true|" \
-e "s|unicode_start|${kbd}/bin/unicode_start|" \
-i "$out/etc/fish/config.fish"
sed -e "s|bc|${bc}/bin/bc|" \
-e "s|/usr/bin/seq|${coreutils}/bin/seq|" \
-i "$out/share/fish/functions/seq.fish" \
"$out/share/fish/functions/math.fish"
sed -i "s|which |${which}/bin/which |" "$out/share/fish/functions/type.fish"
sed -e "s|\|cut|\|${coreutils}/bin/cut|" -i "$out/share/fish/functions/fish_prompt.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 -e "s|uname|${coreutils}/bin/uname|" \
-i "$out/share/fish/functions/__fish_pwd.fish" \
"$out/share/fish/functions/prompt_pwd.fish"
sed -e "s|sed |${gnused}/bin/sed |" \
-i "$out/share/fish/functions/alias.fish" \
"$out/share/fish/functions/prompt_pwd.fish"
substituteInPlace "$out/share/fish/functions/fish_default_key_bindings.fish" \
--replace "clear;" "${ncurses}/bin/clear;"
'' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
sed -i "s|(hostname\||(${nettools}/bin/hostname\||" "$out/share/fish/functions/fish_prompt.fish"
sed -i "s|Popen(\['manpath'|Popen(\['${man_db}/bin/manpath'|" "$out/share/fish/tools/create_manpage_completions.py"
'' + ''
sed -i "s|/sbin /usr/sbin||" \
"$out/share/fish/functions/__fish_complete_subcommand_root.fish"
'';
2013-09-25 20:08:40 +00:00
meta = with stdenv.lib; {
description = "Smart and user-friendly command line shell";
homepage = "http://fishshell.com/";
2013-09-25 20:08:40 +00:00
license = licenses.gpl2;
2014-09-16 07:04:55 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ ocharles ];
2013-06-04 09:20:30 +00:00
};
2013-10-30 13:59:38 +00:00
}