Skip to content

Commit

Permalink
mod-distortion: fix package (empty $out before)
Browse files Browse the repository at this point in the history
`$out` wasn't expanded, so the install phase was installing to `ut/lib/v2` (because make expanded `$o` to empty).

cc: @magnetophon
  • Loading branch information
bennofs committed Feb 26, 2017
1 parent 701544d commit 8b5e8b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/applications/audio/mod-distortion/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

1 comment on commit 8b5e8b3

@magnetophon
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bennofs Good catch!

Please sign in to comment.