From 8b5e8b3cdbd3de74cc7e7391c095c066cdda12d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benno=20F=C3=BCnfst=C3=BCck?= Date: Sun, 26 Feb 2017 18:14:33 +0100 Subject: [PATCH] mod-distortion: fix package (empty $out before) `$out` wasn't expanded, so the install phase was installing to `ut/lib/v2` (because make expanded `$o` to empty). cc: @magnetophon --- pkgs/applications/audio/mod-distortion/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/audio/mod-distortion/default.nix b/pkgs/applications/audio/mod-distortion/default.nix index 7b17f21b613..a1837287079 100644 --- a/pkgs/applications/audio/mod-distortion/default.nix +++ b/pkgs/applications/audio/mod-distortion/default.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { buildInputs = [ lv2 ]; - installFlags = [ "LV2_PATH=$out/lib/lv2" ]; + installFlags = [ "LV2_PATH=$(out)/lib/lv2" ]; meta = with stdenv.lib; { homepage = https://github.com/portalmod/mod-distortion;