Merge pull request #14156 from ryanartecona/otool/remove

otool: remove
This commit is contained in:
joachifm 2016-03-23 18:42:21 +00:00
commit 5e93b6d929
2 changed files with 0 additions and 41 deletions

View File

@ -1,39 +0,0 @@
{ stdenv }:
assert stdenv.isDarwin;
/* this tool only exists on darwin
NOTE: it might make sense to compile this from source (maybe it even works for non-darwin)
I see cctools source is under GPL2+ as well as APSL 2.0
http://opensource.apple.com/release/developer-tools-46/
*/
stdenv.mkDerivation {
name = "otool";
src = "/usr/bin/otool";
unpackPhase = "true";
configurePhase = "true";
buildPhase = "true";
installPhase = ''
mkdir -p "$out/bin"
ln -s $src "$out/bin"
'';
meta = with stdenv.lib; {
description = "Object file displaying tool";
homepage = https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/otool.1.html;
license = with licenses; [ apsl20 gpl2Plus ];
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.darwin;
longDescription = ''
The otool command displays specified parts of object files or libraries.
If the, -m option is not used, the file arguments may be of the form
libx.a(foo.o), to request information about only that object file and not
the entire library.
'';
};
}

View File

@ -633,8 +633,6 @@ let
lastpass-cli = callPackage ../tools/security/lastpass-cli { };
otool = callPackage ../os-specific/darwin/otool { };
pass = callPackage ../tools/security/pass { };
oracle-instantclient = callPackage ../development/libraries/oracle-instantclient { };