mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
caffe: Make 'bin' the first output
So ${caffe}/bin/foo always works in scripts.
This commit is contained in:
parent
206e4a6d69
commit
9824ca6975
1 changed files with 2 additions and 3 deletions
|
@ -46,9 +46,8 @@ stdenv.mkDerivation rec {
|
|||
|
||||
propagatedBuildInputs = lib.optional pythonSupport python.pkgs.protobuf;
|
||||
|
||||
outputs = [ "out" "bin" ];
|
||||
# Don't propagate bin.
|
||||
outputBin = "out";
|
||||
outputs = [ "bin" "out"];
|
||||
propagatedBuildOutputs = []; # otherwise propagates out -> bin cycle
|
||||
|
||||
postInstall = ''
|
||||
# Internal static library.
|
||||
|
|
Loading…
Reference in a new issue