nixpkgs/pkgs/by-name/fc/fcrackzip/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
873 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl}:
2016-12-12 12:05:28 +00:00
stdenv.mkDerivation rec {
pname = "fcrackzip";
2016-12-12 12:05:28 +00:00
version = "1.0";
src = fetchurl {
url = "http://oldhome.schmorp.de/marc/data/${pname}-${version}.tar.gz";
2016-12-12 12:05:28 +00:00
sha256 = "0l1qsk949vnz18k4vjf3ppq8p497966x4c7f2yx18x8pk35whn2a";
};
2024-04-18 01:32:32 +00:00
CFLAGS = "-std=gnu89";
2016-12-12 12:05:28 +00:00
# 'fcrackzip --use-unzip' cannot deal with file names containing a single quote
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=430387
patches = [ ./fcrackzip_forkexec.patch ];
# Do not clash with unizp/zipinfo
postInstall = "mv $out/bin/zipinfo $out/bin/fcrackzip-zipinfo";
meta = with lib; {
2016-12-12 12:05:28 +00:00
description = "zip password cracker, similar to fzc, zipcrack and others";
homepage = "http://oldhome.schmorp.de/marc/fcrackzip.html";
2024-04-26 11:35:31 +00:00
license = licenses.gpl2Only;
2016-12-12 12:05:28 +00:00
maintainers = with maintainers; [ nico202 ];
platforms = with platforms; unix;
};
}