Updating ccrypt
svn path=/nixpkgs/trunk/; revision=22150
This commit is contained in:
parent
240305fab4
commit
66b32efbcc
@ -1,13 +1,20 @@
|
|||||||
{stdenv, fetchurl}:
|
{stdenv, fetchurl, perl}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "ccrypt-1.7";
|
name = "ccrypt-1.9";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/ccrypt/ccrypt-1.7.tar.gz;
|
url = mirror://sourceforge/ccrypt/ccrypt-1.9.tar.gz;
|
||||||
sha256 = "1bf974c9ee5f20332f0117c5b80784825f505f1a24eb57a10c8195c3ad16540e";
|
sha256 = "1bzbfq19jnnlp221kilzxpy0l6w3hk9b1iqjz4haypzlyxswnf35";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildNativeInputs = [ perl ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
homepage = http://ccrypt.sourceforge.net/;
|
||||||
description = "Utility for encrypting and decrypting files and streams with AES-256";
|
description = "Utility for encrypting and decrypting files and streams with AES-256";
|
||||||
license = "GPLv2+";
|
license = "GPLv2+";
|
||||||
|
maintainers = with stdenv.lib.maintainers; [viric];
|
||||||
|
platforms = with stdenv.lib.platforms; all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -494,7 +494,7 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
ccrypt = import ../tools/security/ccrypt {
|
ccrypt = import ../tools/security/ccrypt {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv perl;
|
||||||
};
|
};
|
||||||
|
|
||||||
cdecl = import ../development/tools/cdecl {
|
cdecl = import ../development/tools/cdecl {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user