nixpkgs/pkgs/os-specific/darwin/otool/default.nix

36 lines
909 B
Nix
Raw Normal View History

{ stdenv }:
2013-07-04 11:01:47 +02:00
# this tool only exists on darwin
assert stdenv.isDarwin;
stdenv.mkDerivation {
name = "otool";
src = "/usr/bin/otool";
unpackPhase = "true";
configurePhase = "true";
buildPhase = "true";
installPhase = ''
mkdir -p "$out/bin"
2013-07-07 10:54:33 +02:00
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;
2013-07-07 10:54:33 +02:00
license = licenses.unfree;
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.
'';
};
}