Created
December 21, 2014 20:21
-
-
Save corajr/d40bd4356e2fbf1c51e9 to your computer and use it in GitHub Desktop.
SecurityTool dummy package
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source $stdenv/setup | |
| mkdir -p $out/bin | |
| cp /usr/bin/security $out/bin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { stdenv }: | |
| stdenv.mkDerivation rec { | |
| name = "SecurityTool-native"; | |
| src = "./."; | |
| builder = ./builder.sh; | |
| meta = with stdenv.lib; { | |
| description = "Command line interface to Mac OS X keychains and Security framework"; | |
| maintainers = [ ]; | |
| platforms = platforms.darwin; | |
| license = licenses.apsl20; | |
| }; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment