mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Added SECCURE - Elliptic Curve Cryptography zero-configuration command-line tool. Note: needs to be setuid, because loves to lock memory.
svn path=/nixpkgs/trunk/; revision=10926
This commit is contained in:
parent
70ac99975d
commit
25f81f6438
1 changed files with 28 additions and 0 deletions
28
pkgs/tools/security/seccure/0.3.nix
Normal file
28
pkgs/tools/security/seccure/0.3.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
args : with args; with builderDefs {src="";} null;
|
||||
let localDefs = builderDefs (rec {
|
||||
src = /* put a fetchurl here */
|
||||
fetchurl {
|
||||
url = http://freshmeat.net/redir/seccure/65485/url_tgz/seccure-0.3.tar.gz;
|
||||
sha256 = "0isah96p35yxm86dklmgmdkvpflqi2aj4k344jp57chrhg5av74d";
|
||||
};
|
||||
|
||||
buildInputs = [libgcrypt];
|
||||
configureFlags = [];
|
||||
doPatch = FullDepEntry (''
|
||||
sed -e s@/usr/@$out/@g -i Makefile
|
||||
ensureDir $out/bin $out/share/man/man1
|
||||
'') ["minInit" "doUnpack" "defEnsureDir"];
|
||||
}) null; /* null is a terminator for sumArgs */
|
||||
in with localDefs;
|
||||
stdenv.mkDerivation rec {
|
||||
name = "seccure-"+version;
|
||||
builder = writeScript (name + "-builder")
|
||||
(textClosure localDefs
|
||||
["doPatch" doMakeInstall doForceShare doPropagate]);
|
||||
meta = {
|
||||
description = "
|
||||
Elliptic Curve Cryptography. Zero-configuration.
|
||||
";
|
||||
inherit src;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue