2021-01-15 09:19:50 +00:00
|
|
|
{lib, stdenv, fetchurl, perl}:
|
2010-06-04 16:21:32 +01:00
|
|
|
|
2021-07-27 15:21:24 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ccrypt";
|
|
|
|
version = "1.11";
|
2009-01-12 21:12:07 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-07-27 15:21:24 +01:00
|
|
|
url = "mirror://sourceforge/ccrypt/ccrypt-${version}.tar.gz";
|
2018-08-09 02:59:31 +01:00
|
|
|
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 = {
|
2020-04-01 02:11:51 +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";
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
maintainers = with lib.maintainers; [viric];
|
|
|
|
platforms = with lib.platforms; all;
|
2009-01-12 21:12:07 +00:00
|
|
|
};
|
|
|
|
}
|