summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorUli Baum <xeji@cat3.de>2018-08-01 10:42:09 +0200
committerUli Baum <xeji@cat3.de>2018-08-01 10:44:04 +0200
commit26210f556af7e598eb10f14ebe4445a724e85c56 (patch)
treee934ec857b09280fe3af54d4a1b30007102b7483 /pkgs/applications/misc
parentd7c34debe2d5703f3233468e408480e7430e25e3 (diff)
downloadnixlib-26210f556af7e598eb10f14ebe4445a724e85c56.tar
nixlib-26210f556af7e598eb10f14ebe4445a724e85c56.tar.gz
nixlib-26210f556af7e598eb10f14ebe4445a724e85c56.tar.bz2
nixlib-26210f556af7e598eb10f14ebe4445a724e85c56.tar.lz
nixlib-26210f556af7e598eb10f14ebe4445a724e85c56.tar.xz
nixlib-26210f556af7e598eb10f14ebe4445a724e85c56.tar.zst
nixlib-26210f556af7e598eb10f14ebe4445a724e85c56.zip
memo: don't use ag alias
using the alias `ag` for `silver-searcher` broke the nixpkgs tarball
with an error in eval-release.nix, see discussion in #44273.
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/memo/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/memo/default.nix b/pkgs/applications/misc/memo/default.nix
index 1551eebb3c64..072ea7e42dc5 100644
--- a/pkgs/applications/misc/memo/default.nix
+++ b/pkgs/applications/misc/memo/default.nix
@@ -1,4 +1,4 @@
-{ fetchFromGitHub, ag, tree, man, stdenv, 
+{ fetchFromGitHub, silver-searcher, tree, man, stdenv,
   pandocSupport ? true, pandoc ? null
   , ... }:
 
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
   in ''
     mkdir -p $out/{bin,share/man/man1,share/bash-completion/completions,share/zsh/site-functions}
     substituteInPlace memo \
-      --replace "ack_cmd=ack"       "ack_cmd=${ag}/bin/ag" \
+      --replace "ack_cmd=ack"       "ack_cmd=${silver-searcher}/bin/ag" \
       --replace "tree_cmd=tree"     "tree_cmd=${tree}/bin/tree" \
       --replace "man_cmd=man"       "man_cmd=${man}/bin/man" \
       --replace "pandoc_cmd=pandoc" "${pandocReplacement}"