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