summary refs log tree commit diff
diff options
context:
space:
mode:
authorBenno Fünfstück <benno.fuenfstueck@gmail.com>2017-02-26 18:14:33 +0100
committerBenno Fünfstück <benno.fuenfstueck@gmail.com>2017-02-26 18:18:21 +0100
commit8b5e8b3cdbd3de74cc7e7391c095c066cdda12d3 (patch)
treebd6f8e1653092be4d4bfdd01807d6c802b6c671e
parent701544d0a785274a6d38ee894b3251b2632c2317 (diff)
downloadnixpkgs-8b5e8b3cdbd3de74cc7e7391c095c066cdda12d3.tar
nixpkgs-8b5e8b3cdbd3de74cc7e7391c095c066cdda12d3.tar.gz
nixpkgs-8b5e8b3cdbd3de74cc7e7391c095c066cdda12d3.tar.bz2
nixpkgs-8b5e8b3cdbd3de74cc7e7391c095c066cdda12d3.tar.lz
nixpkgs-8b5e8b3cdbd3de74cc7e7391c095c066cdda12d3.tar.xz
nixpkgs-8b5e8b3cdbd3de74cc7e7391c095c066cdda12d3.tar.zst
nixpkgs-8b5e8b3cdbd3de74cc7e7391c095c066cdda12d3.zip
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
-rw-r--r--pkgs/applications/audio/mod-distortion/default.nix2
1 files changed, 1 insertions, 1 deletions
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;