mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
install_name_tool: remove
cctools provides install_name_tool
This commit is contained in:
parent
5eb75ce205
commit
a78af29ae7
@ -1,29 +0,0 @@
|
||||
{ stdenv }:
|
||||
|
||||
assert stdenv.isDarwin;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "install_name_tool";
|
||||
src = "/usr/bin/install_name_tool";
|
||||
|
||||
unpackPhase = "true";
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p "$out"/bin
|
||||
ln -s "$src" "$out"/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Change dynamic shared library install names";
|
||||
homepage = https://developer.apple.com/library/mac/documentation/Darwin/Reference/Manpages/man1/install_name_tool.1.html;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
platforms = platforms.darwin;
|
||||
|
||||
longDescription = ''
|
||||
Install_name_tool changes the dynamic shared library install names and or
|
||||
adds, changes or deletes the rpaths recorded in a Mach-O binary.
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
@ -547,8 +547,6 @@ with pkgs;
|
||||
|
||||
reattach-to-user-namespace = callPackage ../os-specific/darwin/reattach-to-user-namespace {};
|
||||
|
||||
install_name_tool = callPackage ../os-specific/darwin/install_name_tool { };
|
||||
|
||||
xcodeenv = callPackage ../development/mobile/xcodeenv { };
|
||||
|
||||
titaniumenv = callPackage ../development/mobile/titaniumenv {
|
||||
|
@ -28918,8 +28918,7 @@ EOF
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ cffi ];
|
||||
buildInputs = [ pkgs.libspotify ]
|
||||
++ stdenv.lib.optional stdenv.isDarwin pkgs.install_name_tool;
|
||||
buildInputs = [ pkgs.libspotify ];
|
||||
|
||||
# python zip complains about old timestamps
|
||||
preConfigure = ''
|
||||
|
Loading…
Reference in New Issue
Block a user