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:
parent
701544d0a7
commit
8b5e8b3cdb
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue