diff options
author | tv <tv@krebsco.de> | 2019-02-16 16:01:03 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2019-02-16 16:06:01 +0100 |
commit | bfbeca92fb2c85edd1bbbed34ed3d27f854ed406 (patch) | |
tree | 4b8cfface613510d73dc32093cb635871ff4d9df /tv/5pkgs | |
parent | 2647605a32f36033ea567a2831dbe332978fd95b (diff) |
tv bash-fzf-history: use overrideDerivation
Diffstat (limited to 'tv/5pkgs')
-rw-r--r-- | tv/5pkgs/simple/bash-fzf-history.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tv/5pkgs/simple/bash-fzf-history.nix b/tv/5pkgs/simple/bash-fzf-history.nix index b603ded..88a8e9e 100644 --- a/tv/5pkgs/simple/bash-fzf-history.nix +++ b/tv/5pkgs/simple/bash-fzf-history.nix @@ -97,7 +97,6 @@ with import <stockholm/lib>; bind -s | ${pkgs.gnugrep}/bin/grep __fzf_ >&2 ''; in - script // - rec { + script.overrideAttrs (old: rec { bind = /* sh */ ''bind -x '"${load-keyseq}": . ${script}' ''; - } + }) |