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