From b6080f1e5795c0086508a1e20c4d8ae61d90e36f Mon Sep 17 00:00:00 2001 From: David Baynard Date: Wed, 12 Jan 2022 10:58:46 +0000 Subject: [PATCH] anystyle-cli: fix PATH in wrapper There was a syntax error in the `--prefix` argument to `wrapProgram`. The arguments are ENV SEP VAL. --- pkgs/tools/misc/anystyle-cli/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/anystyle-cli/default.nix b/pkgs/tools/misc/anystyle-cli/default.nix index 7a437cafc28..379ed14f8ef 100644 --- a/pkgs/tools/misc/anystyle-cli/default.nix +++ b/pkgs/tools/misc/anystyle-cli/default.nix @@ -30,7 +30,7 @@ buildRubyGem rec { propagatedBuildInputs = [ deps ]; preFixup = '' - wrapProgram $out/bin/anystyle --prefix PATH ${poppler_utils}/bin + wrapProgram $out/bin/anystyle --prefix PATH : ${poppler_utils}/bin ''; meta = with lib; {