mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
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 {
|
||||
pname = "macdylibbundler";
|
||||
@ -11,8 +11,15 @@ stdenv.mkDerivation {
|
||||
sha256 = "149p3dcnap4hs3nhq5rfvr3m70rrb5hbr5xkj1h0gsfp0d7gvxnj";
|
||||
};
|
||||
|
||||
buildInputs = [ makeWrapper ];
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/dylibbundler \
|
||||
--prefix PATH ":" "${cctools}/bin"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Utility to ease bundling libraries into executables for OSX";
|
||||
longDescription = ''
|
||||
|
@ -22390,7 +22390,7 @@ in
|
||||
|
||||
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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user