From 87cb1b0ca1c9c0be08eb4ee92397f87ae6126e10 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sun, 10 Apr 2016 22:51:11 +0300 Subject: [PATCH] treewide: Mass replace 'libxslt}/bin' to refer to the correct outputs --- pkgs/tools/misc/venus/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/venus/default.nix b/pkgs/tools/misc/venus/default.nix index 4206f468ec7..6fc4e436153 100644 --- a/pkgs/tools/misc/venus/default.nix +++ b/pkgs/tools/misc/venus/default.nix @@ -20,9 +20,9 @@ stdenv.mkDerivation rec { substituteInPlace planet.py \ --replace "#!/usr/bin/env python" "#!${python}/bin/python" substituteInPlace tests/test_apply.py \ - --replace "'xsltproc" "'${libxslt}/bin/xsltproc" + --replace "'xsltproc" "'${libxslt.bin}/bin/xsltproc" substituteInPlace planet/shell/xslt.py \ - --replace "'xsltproc" "'${libxslt}/bin/xsltproc" + --replace "'xsltproc" "'${libxslt.bin}/bin/xsltproc" ''; doCheck = true;