mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
9a624d10e3
Since theey is not active from at least six years. All the packages on this commit became orphans. --------------------------------------------------------------------------- There are files not covered by this commit, because they will be adopted soon. Namely: - pkgs/by-name/zs/zsync/package.nix - pkgs/games/bsdgames/default.nix - pkgs/misc/ghostscript/default.nix - pkgs/os-specific/linux/kernel/perf/default.nix - pkgs/tools/system/logrotate/default.nix
24 lines
587 B
Nix
24 lines
587 B
Nix
{lib, stdenv, fetchurl, perl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ccrypt";
|
|
version = "1.11";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/ccrypt/ccrypt-${version}.tar.gz";
|
|
sha256 = "0kx4a5mhmp73ljknl2lcccmw9z3f5y8lqw0ghaymzvln1984g75i";
|
|
};
|
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
meta = {
|
|
homepage = "https://ccrypt.sourceforge.net/";
|
|
description = "Utility for encrypting and decrypting files and streams with AES-256";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
platforms = with lib.platforms; all;
|
|
};
|
|
}
|