xeus-cling: fix improper linking with LLVM (#351130)
[NixPkgs.git] / pkgs / by-name / pk / pkcrack / package.nix
blob5cbe977c38ec104f30cafda28b2f10b913b7cf63
1 { lib
2 , stdenv
3 , fetchurl
4 }:
6 stdenv.mkDerivation (finalAttrs: {
7   pname = "pkcrack";
8   version = "1.2.3";
10   src = fetchurl {
11     url = "https://www.unix-ag.uni-kl.de/~conrad/krypto/pkcrack/pkcrack-${finalAttrs.version}.tar.gz";
12     hash = "sha256-j0n6OHlio3oUyavVSQFnIaY0JREFv0uDfMcvC61BPTg=";
13   };
14   sourceRoot = "pkcrack-${finalAttrs.version}/src";
16   postPatch = ''
17     # malloc.h is not needed because stdlib.h is already included.
18     # On macOS, malloc.h does not even exist, resulting in an error.
19     substituteInPlace exfunc.c extract.c main.c readhead.c zipdecrypt.c \
20       --replace '#include <malloc.h>' ""
21   '';
23   makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
24   enableParallelBuilding = true;
26   installPhase = ''
27     runHook preInstall
29     install -D extract $out/bin/extract
30     install -D findkey $out/bin/findkey
31     install -D makekey $out/bin/makekey
32     install -D pkcrack $out/bin/pkcrack
33     install -D zipdecrypt $out/bin/zipdecrypt
35     mkdir -p $out/share/doc
36     cp -R ../doc/ $out/share/doc/pkcrack
38     runHook postInstall
39   '';
41   meta = with lib; {
42     description = "Breaking PkZip-encryption";
43     homepage = "https://www.unix-ag.uni-kl.de/~conrad/krypto/pkcrack.html";
44     license = {
45       fullName = "PkCrack Non Commercial License";
46       url = "https://www.unix-ag.uni-kl.de/~conrad/krypto/pkcrack/pkcrack-readme.html";
47       free = false;
48     };
49     maintainers = with maintainers; [ emilytrau ];
50     platforms = platforms.all;
51     mainProgram = "pkcrack";
52   };