biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / ldid-procursus / default.nix
blobb9ffbb2fc871cee43c2b5651ae66a73691c99650
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , installShellFiles
5 , pkg-config
6 , libplist
7 , openssl
8 }:
10 stdenv.mkDerivation (finalAttrs: {
11   pname = "ldid-procursus";
12   version = "2.1.5-procursus7";
14   src = fetchFromGitHub {
15     owner = "ProcursusTeam";
16     repo = "ldid";
17     rev = "v${finalAttrs.version}";
18     hash = "sha256-QnSmWY9zCOPYAn2VHc5H+VQXjTCyr0EuosxvKGGpDtQ=";
19   };
21   nativeBuildInputs = [ pkg-config installShellFiles ];
22   buildInputs = [ libplist openssl ];
24   stripDebugFlags = [ "--strip-unneeded" ];
25   makeFlags = [ "PREFIX=${placeholder "out"}" ];
27   postPatch = ''
28     substituteInPlace Makefile \
29       --replace "pkg-config" "$PKG_CONFIG"
30   '';
32   postInstall = ''
33     installShellCompletion --cmd ldid --zsh _ldid
34   '';
36   meta = with lib; {
37     mainProgram = "ldid";
38     description = "Put real or fake signatures in a Mach-O binary";
39     homepage = "https://github.com/ProcursusTeam/ldid";
40     maintainers = with maintainers; [ keto ];
41     platforms = platforms.unix;
42     license = licenses.agpl3Only;
43   };