mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 23:54:01 +00:00
30 lines
761 B
Nix
30 lines
761 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, libplist
|
|
, openssl
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "ldid-procursus";
|
|
version = "2.1.5-procursus7";
|
|
src = fetchFromGitHub {
|
|
owner = "ProcursusTeam";
|
|
repo = "ldid";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-QnSmWY9zCOPYAn2VHc5H+VQXjTCyr0EuosxvKGGpDtQ=";
|
|
};
|
|
nativeBuildInputs = [ pkg-config libplist openssl ];
|
|
stripDebugFlags = [ "--strip-unneeded" ];
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
meta = with lib; {
|
|
description = "Put real or fake signatures in a Mach-O binary";
|
|
homepage = "https://github.com/ProcursusTeam/ldid";
|
|
maintainers = with maintainers; [ keto ];
|
|
platforms = platforms.unix;
|
|
license = licenses.agpl3Only;
|
|
};
|
|
})
|