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