2010-06-04 16:21:32 +01:00
|
|
|
{stdenv, fetchurl, perl}:
|
|
|
|
|
2009-01-12 21:12:07 +00:00
|
|
|
stdenv.mkDerivation {
|
2018-08-09 02:59:31 +01:00
|
|
|
name = "ccrypt-1.11";
|
2009-01-12 21:12:07 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-08-09 02:59:31 +01:00
|
|
|
url = mirror://sourceforge/ccrypt/ccrypt-1.11.tar.gz;
|
|
|
|
sha256 = "0kx4a5mhmp73ljknl2lcccmw9z3f5y8lqw0ghaymzvln1984g75i";
|
2009-01-12 21:12:07 +00:00
|
|
|
};
|
2010-06-04 16:21:32 +01:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ perl ];
|
2010-06-04 16:21:32 +01:00
|
|
|
|
2016-04-05 17:21:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2009-01-12 21:12:07 +00:00
|
|
|
meta = {
|
2010-06-04 16:21:32 +01: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 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-06-04 16:21:32 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; all;
|
2009-01-12 21:12:07 +00:00
|
|
|
};
|
|
|
|
}
|