1 {lib, stdenv, fetchurl, perl}:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/ccrypt/ccrypt-${version}.tar.gz";
9 sha256 = "0kx4a5mhmp73ljknl2lcccmw9z3f5y8lqw0ghaymzvln1984g75i";
12 nativeBuildInputs = [ perl ];
14 hardeningDisable = [ "format" ];
17 homepage = "http://ccrypt.sourceforge.net/";
18 description = "Utility for encrypting and decrypting files and streams with AES-256";
19 license = lib.licenses.gpl2Plus;
20 maintainers = with lib.maintainers; [viric];
21 platforms = with lib.platforms; all;