summary refs log tree commit diff
path: root/pkgs/shells/fish
diff options
context:
space:
mode:
authorEric Seidel <gridaphobe@gmail.com>2016-04-25 09:13:06 -0700
committerEric Seidel <gridaphobe@gmail.com>2016-04-25 09:13:06 -0700
commit7e92ae903e10cec92f33e288050cc9b5d004fc16 (patch)
tree73bfe2bb71fa2159b39757bb80e4a1c0e2416af4 /pkgs/shells/fish
parent2177bf30740933ae44644643a24e6fde506ee4d0 (diff)
downloadnixpkgs-7e92ae903e10cec92f33e288050cc9b5d004fc16.tar
nixpkgs-7e92ae903e10cec92f33e288050cc9b5d004fc16.tar.gz
nixpkgs-7e92ae903e10cec92f33e288050cc9b5d004fc16.tar.bz2
nixpkgs-7e92ae903e10cec92f33e288050cc9b5d004fc16.tar.lz
nixpkgs-7e92ae903e10cec92f33e288050cc9b5d004fc16.tar.xz
nixpkgs-7e92ae903e10cec92f33e288050cc9b5d004fc16.tar.zst
nixpkgs-7e92ae903e10cec92f33e288050cc9b5d004fc16.zip
fish: only use kbd on linux
Diffstat (limited to 'pkgs/shells/fish')
-rw-r--r--pkgs/shells/fish/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix
index 5bb7100a620..8916cca0f04 100644
--- a/pkgs/shells/fish/default.nix
+++ b/pkgs/shells/fish/default.nix
@@ -24,6 +24,7 @@ stdenv.mkDerivation rec {
     sed -e "s|expr|${coreutils}/bin/expr|" \
   '' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
         -e "s|if which unicode_start|if true|" \
+    '' + stdenv.lib.optionalString stdenv.isLinux ''
         -e "s|unicode_start|${kbd}/bin/unicode_start|" \
   '' + ''
         -i "$out/etc/fish/config.fish"