Skip to content

Commit

Permalink
openexr, libyaml-cpp: Fix output order to match others
Browse files Browse the repository at this point in the history
This was changed in #14766

@edolstra
  • Loading branch information
dezgeg committed Sep 1, 2016
1 parent 2166652 commit 75b5922
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkgs/applications/graphics/openimageio/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
];

preBuild = ''
makeFlags="ILMBASE_HOME=${ilmbase} OPENEXR_HOME=${openexr} USE_PYTHON=0
makeFlags="ILMBASE_HOME=${ilmbase} OPENEXR_HOME=${openexr.dev} USE_PYTHON=0
INSTALLDIR=$out dist_dir="
'';

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/graphics/qtpfsgui/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ stdenv.mkDerivation rec {

qmakeFlags = [
"EXIV2PATH=${exiv2.dev}/include/exiv2"
"OPENEXRDIR=${openexr}/include/OpenEXR"
"OPENEXRDIR=${openexr.dev}/include/OpenEXR"
"FFTW3DIR=${fftwSinglePrec.dev}/include"
"LIBTIFFDIR=${libtiff.dev}/include"
];
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/libyaml-cpp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "0qr286q8mwbr4cxz0y0rf045zc071qh3cb804by6w1ydlqciih8a";
};

outputs = [ "dev" "out" ];
outputs = [ "out" "dev" ];

buildInputs = [ cmake boost ];

Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/openexr/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "0ca2j526n4wlamrxb85y2jrgcv0gf21b3a19rr0gh4rjqkv1581n";
};

outputs = [ "dev" "bin" "out" "doc" ];
outputs = [ "bin" "dev" "out" "doc" ];

preConfigure = ''
./bootstrap
Expand Down

0 comments on commit 75b5922

Please sign in to comment.