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
This commit is contained in:
Benno Fünfstück 2017-02-26 18:14:33 +01:00
parent 701544d0a7
commit 8b5e8b3cdb

View File

@ -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;