Skip to content

Instantly share code, notes, and snippets.

@corajr
Created December 21, 2014 20:21
Show Gist options
  • Select an option

  • Save corajr/d40bd4356e2fbf1c51e9 to your computer and use it in GitHub Desktop.

Select an option

Save corajr/d40bd4356e2fbf1c51e9 to your computer and use it in GitHub Desktop.
SecurityTool dummy package
source $stdenv/setup
mkdir -p $out/bin
cp /usr/bin/security $out/bin
{ 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