1{stdenv, fetchurl, perl}:
2
3stdenv.mkDerivation {
4 name = "ccrypt-1.10";
5
6 src = fetchurl {
7 url = mirror://sourceforge/ccrypt/ccrypt-1.10.tar.gz;
8 sha256 = "184v9676hx2w875cz04rd3a20wrcms33a1zwybvapb0g2yi6vml7";
9 };
10
11 nativeBuildInputs = [ perl ];
12
13 hardeningDisable = [ "format" ];
14
15 meta = {
16 homepage = http://ccrypt.sourceforge.net/;
17 description = "Utility for encrypting and decrypting files and streams with AES-256";
18 license = stdenv.lib.licenses.gpl2Plus;
19 maintainers = with stdenv.lib.maintainers; [viric];
20 platforms = with stdenv.lib.platforms; all;
21 };
22}