forked from mirrors/nixpkgs
nixpkgs: stricat 20140609100300
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
b6a2f8eaa8
commit
f09f8adc0f
24
pkgs/tools/security/stricat/default.nix
Normal file
24
pkgs/tools/security/stricat/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "stricat-${version}";
|
||||
version = "20140609100300";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.stribob.com/dist/${name}.tgz";
|
||||
sha256 = "1axg8r4g5n5kdqj5013pgck80nni3z172xkg506vz4zx1zcmrm4r";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
mv stricat $out/bin
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "multi-use cryptographic tool based on the STRIBOB algorithm";
|
||||
homepage = "https://www.stribob.com/stricat/";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
||||
};
|
||||
}
|
|
@ -2169,6 +2169,8 @@ let
|
|||
|
||||
sitecopy = callPackage ../tools/networking/sitecopy { };
|
||||
|
||||
stricat = callPackage ../tools/security/stricat { };
|
||||
|
||||
privoxy = callPackage ../tools/networking/privoxy { };
|
||||
|
||||
t1utils = callPackage ../tools/misc/t1utils { };
|
||||
|
|
Loading…
Reference in a new issue