2010-06-04 08:21:32 -07:00
|
|
|
{stdenv, fetchurl, perl}:
|
|
|
|
|
2009-01-12 13:12:07 -08:00
|
|
|
stdenv.mkDerivation {
|
2013-12-15 00:54:18 -08:00
|
|
|
name = "ccrypt-1.10";
|
2009-01-12 13:12:07 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-12-15 00:54:18 -08:00
|
|
|
url = mirror://sourceforge/ccrypt/ccrypt-1.10.tar.gz;
|
|
|
|
sha256 = "184v9676hx2w875cz04rd3a20wrcms33a1zwybvapb0g2yi6vml7";
|
2009-01-12 13:12:07 -08:00
|
|
|
};
|
2010-06-04 08:21:32 -07:00
|
|
|
|
2012-12-28 10:20:09 -08:00
|
|
|
nativeBuildInputs = [ perl ];
|
2010-06-04 08:21:32 -07:00
|
|
|
|
2009-01-12 13:12:07 -08:00
|
|
|
meta = {
|
2010-06-04 08:21:32 -07:00
|
|
|
homepage = http://ccrypt.sourceforge.net/;
|
2009-01-12 13:12:07 -08:00
|
|
|
description = "Utility for encrypting and decrypting files and streams with AES-256";
|
|
|
|
license = "GPLv2+";
|
2010-06-04 08:21:32 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; all;
|
2009-01-12 13:12:07 -08:00
|
|
|
};
|
|
|
|
}
|