setFile: add expression
This commit is contained in:
@@ -0,0 +1,31 @@
|
|||||||
|
{ stdenv }:
|
||||||
|
|
||||||
|
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.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
@@ -446,6 +446,8 @@ let
|
|||||||
|
|
||||||
otool = callPackage ../development/tools/misc/otool { };
|
otool = callPackage ../development/tools/misc/otool { };
|
||||||
|
|
||||||
|
setFile = callPackage ../development/tools/misc/setFile { };
|
||||||
|
|
||||||
xcodeenv = callPackage ../development/mobile/xcodeenv { };
|
xcodeenv = callPackage ../development/mobile/xcodeenv { };
|
||||||
|
|
||||||
titaniumenv_2_1 = import ../development/mobile/titaniumenv {
|
titaniumenv_2_1 = import ../development/mobile/titaniumenv {
|
||||||
|
|||||||
Reference in New Issue
Block a user