python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / ccrypt / default.nix
blob2972fc9ae55fd646dacc9289a513de3ed57a6432
1 {lib, stdenv, fetchurl, perl}:
3 stdenv.mkDerivation rec {
4   pname = "ccrypt";
5   version = "1.11";
7   src = fetchurl {
8     url = "mirror://sourceforge/ccrypt/ccrypt-${version}.tar.gz";
9     sha256 = "0kx4a5mhmp73ljknl2lcccmw9z3f5y8lqw0ghaymzvln1984g75i";
10   };
12   nativeBuildInputs = [ perl ];
14   hardeningDisable = [ "format" ];
16   meta = {
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;
22   };