From 3449107d683e80848ed408cbecf20845cf99663e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benno=20F=C3=BCnfst=C3=BCck?= Date: Tue, 7 Mar 2017 12:07:29 +0100 Subject: [PATCH] dvdisaster: fix $out variable expansion (makeFlags) Make requires variables with more than one letter to be surrounded by parentheses, like `$(out)`. Just writing `$out` will be interpreted as `$o` followed by `ut`, so the package installed its documentaion to `ut/share/doc`. /cc maintainers @jgeerds @nckx --- pkgs/tools/cd-dvd/dvdisaster/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/cd-dvd/dvdisaster/default.nix b/pkgs/tools/cd-dvd/dvdisaster/default.nix index a0306d8d51a..7e3c2cda48b 100644 --- a/pkgs/tools/cd-dvd/dvdisaster/default.nix +++ b/pkgs/tools/cd-dvd/dvdisaster/default.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { configureFlags = [ # Explicit --docdir= is required for on-line help to work: - "--docdir=$out/share/doc" + "--docdir=share/doc" "--with-nls=yes" "--with-embedded-src-path=no" ] ++ stdenv.lib.optional (builtins.elem stdenv.system