summary refs log tree commit diff
path: root/pkgs/development/tools/misc
diff options
context:
space:
mode:
authorJason "Don" O'Conal <lovek323@gmail.com>2013-07-07 18:54:33 +1000
committerJason "Don" O'Conal <lovek323@gmail.com>2013-07-07 18:58:29 +1000
commit525a6856f237add6fa07da4c19d7e7b6e5366dce (patch)
treeb655ae4b0cad6b1947bd96026bebb1d868de208f /pkgs/development/tools/misc
parentda7db90068a435c754110f6aea315c7b6aca772b (diff)
downloadnixpkgs-525a6856f237add6fa07da4c19d7e7b6e5366dce.tar
nixpkgs-525a6856f237add6fa07da4c19d7e7b6e5366dce.tar.gz
nixpkgs-525a6856f237add6fa07da4c19d7e7b6e5366dce.tar.bz2
nixpkgs-525a6856f237add6fa07da4c19d7e7b6e5366dce.tar.lz
nixpkgs-525a6856f237add6fa07da4c19d7e7b6e5366dce.tar.xz
nixpkgs-525a6856f237add6fa07da4c19d7e7b6e5366dce.tar.zst
nixpkgs-525a6856f237add6fa07da4c19d7e7b6e5366dce.zip
otool and setfile: cleanup
Diffstat (limited to 'pkgs/development/tools/misc')
-rw-r--r--pkgs/development/tools/misc/otool/default.nix34
-rw-r--r--pkgs/development/tools/misc/setFile/default.nix34
2 files changed, 0 insertions, 68 deletions
diff --git a/pkgs/development/tools/misc/otool/default.nix b/pkgs/development/tools/misc/otool/default.nix
deleted file mode 100644
index 21eb2b591c2..00000000000
--- a/pkgs/development/tools/misc/otool/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ stdenv }:
-
-# 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"
-    cp /usr/bin/otool "$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;
-    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.
-    '';
-  };
-}
-
diff --git a/pkgs/development/tools/misc/setFile/default.nix b/pkgs/development/tools/misc/setFile/default.nix
deleted file mode 100644
index e3fbd2cbc6d..00000000000
--- a/pkgs/development/tools/misc/setFile/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ stdenv }:
-
-# this tool only exists on darwin
-assert stdenv.isDarwin;
-
-stdenv.mkDerivation {
-  name = "setFile";
-
-  src = "/usr/bin/SetFile";
-
-  unpackPhase = "true";
-  configurePhase = "true";
-  buildPhase = "true";
-
-  installPhase = ''
-    mkdir -p "$out/bin"
-    cp $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";
-    maintainers = with maintainers; [ lovek323 ];
-    platforms   = platforms.darwin;
-
-    longDescription = ''
-      SetFile is a tool to set the file attributes on files in an HFS+
-      directory. It attempts to be similar to the setfile command in MPW. It can
-      apply rules to more than one file with the options apply- ing to all files
-      listed.
-    '';
-  };
-}
-