1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

otool and setfile: cleanup

This commit is contained in:
Jason "Don" O'Conal 2013-07-07 18:54:33 +10:00
parent da7db90068
commit 525a6856f2
4 changed files with 10 additions and 8 deletions

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, gtk, libXinerama, libSM, libXxf86vm, xf86vidmodeproto
, gstreamer, gst_plugins_base, GConf, setFile
, gstreamer, gst_plugins_base, GConf, setfile
, withMesa ? true, mesa ? null, compat24 ? false, compat26 ? true, unicode ? true,
}:
@ -22,7 +22,7 @@ stdenv.mkDerivation {
[ gtk libXinerama libSM libXxf86vm xf86vidmodeproto gstreamer
gst_plugins_base GConf ]
++ optional withMesa mesa
++ optional stdenv.isDarwin setFile;
++ optional stdenv.isDarwin setfile;
nativeBuildInputs = [ pkgconfig ];
@ -45,7 +45,7 @@ stdenv.mkDerivation {
" + optionalString stdenv.isDarwin ''
substituteInPlace configure --replace \
'ac_cv_prog_SETFILE="/Developer/Tools/SetFile"' \
'ac_cv_prog_SETFILE="${setFile}/bin/SetFile"'
'ac_cv_prog_SETFILE="${setfile}/bin/SetFile"'
'';
postInstall = "

View file

@ -14,12 +14,13 @@ stdenv.mkDerivation {
installPhase = ''
mkdir -p "$out/bin"
cp /usr/bin/otool "$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 = licenses.unfree;
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.darwin;

View file

@ -4,7 +4,7 @@
assert stdenv.isDarwin;
stdenv.mkDerivation {
name = "setFile";
name = "setfile";
src = "/usr/bin/SetFile";
@ -14,12 +14,13 @@ stdenv.mkDerivation {
installPhase = ''
mkdir -p "$out/bin"
cp $src "$out/bin"
ln -s $src "$out/bin"
'';
meta = with stdenv.lib; {
description = "Set attributes of files and directories";
homepage = "http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/setfile.1.html";
license = licenses.unfree;
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.darwin;

View file

@ -444,9 +444,9 @@ let
apg = callPackage ../tools/security/apg { };
otool = callPackage ../development/tools/misc/otool { };
otool = callPackage ../os-specific/darwin/otool { };
setFile = callPackage ../development/tools/misc/setFile { };
setfile = callPackage ../os-specific/darwin/setfile { };
xcodeenv = callPackage ../development/mobile/xcodeenv { };