2010-06-04 17:21:32 +02:00
|
|
|
{stdenv, fetchurl, perl}:
|
|
|
|
|
2009-01-12 22:12:07 +01:00
|
|
|
stdenv.mkDerivation {
|
2010-06-04 17:21:32 +02:00
|
|
|
name = "ccrypt-1.9";
|
2009-01-12 22:12:07 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-06-04 17:21:32 +02:00
|
|
|
url = mirror://sourceforge/ccrypt/ccrypt-1.9.tar.gz;
|
|
|
|
sha256 = "1bzbfq19jnnlp221kilzxpy0l6w3hk9b1iqjz4haypzlyxswnf35";
|
2009-01-12 22:12:07 +01:00
|
|
|
};
|
2010-06-04 17:21:32 +02:00
|
|
|
|
|
|
|
buildNativeInputs = [ perl ];
|
|
|
|
|
2009-01-12 22:12:07 +01:00
|
|
|
meta = {
|
2010-06-04 17:21:32 +02:00
|
|
|
homepage = http://ccrypt.sourceforge.net/;
|
2009-01-12 22:12:07 +01:00
|
|
|
description = "Utility for encrypting and decrypting files and streams with AES-256";
|
|
|
|
license = "GPLv2+";
|
2010-06-04 17:21:32 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; all;
|
2009-01-12 22:12:07 +01:00
|
|
|
};
|
|
|
|
}
|