macdylibbundler: Should propagate dependency on otool (#103163)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
1a3557f729
commit
fb063991b2
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub }:
|
{ stdenv, makeWrapper, fetchFromGitHub, cctools }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "macdylibbundler";
|
pname = "macdylibbundler";
|
||||||
@ -11,8 +11,15 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "149p3dcnap4hs3nhq5rfvr3m70rrb5hbr5xkj1h0gsfp0d7gvxnj";
|
sha256 = "149p3dcnap4hs3nhq5rfvr3m70rrb5hbr5xkj1h0gsfp0d7gvxnj";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
makeFlags = [ "PREFIX=$(out)" ];
|
makeFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
wrapProgram $out/bin/dylibbundler \
|
||||||
|
--prefix PATH ":" "${cctools}/bin"
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Utility to ease bundling libraries into executables for OSX";
|
description = "Utility to ease bundling libraries into executables for OSX";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
@ -22390,7 +22390,7 @@ in
|
|||||||
|
|
||||||
mac = callPackage ../development/libraries/mac { };
|
mac = callPackage ../development/libraries/mac { };
|
||||||
|
|
||||||
macdylibbundler = callPackage ../development/tools/misc/macdylibbundler { };
|
macdylibbundler = callPackage ../development/tools/misc/macdylibbundler { inherit (darwin) cctools; };
|
||||||
|
|
||||||
magic-wormhole = with python3Packages; toPythonApplication magic-wormhole;
|
magic-wormhole = with python3Packages; toPythonApplication magic-wormhole;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user