Unverified Commit e0e6b690 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #245131 from TheRealKeto/init/ldid-procursus

ldid-procursus: init at 2.1.5-procursus7
parents ae0d0f19 112b8fd0
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -8710,6 +8710,11 @@
    githubId = 762421;
    name = "Pierre Thierry";
  };
  keto = {
    github = "TheRealKeto";
    githubId = 24854941;
    name = "Keto";
  };
  ketzacoatl = {
    email = "ketzacoatl@protonmail.com";
    github = "ketzacoatl";
+29 −0
Original line number Diff line number Diff line
{ 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;
  };
})
+2 −0
Original line number Diff line number Diff line
@@ -41492,6 +41492,8 @@ with pkgs;
    inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
  };
  ldid-procursus = callPackage ../development/tools/ldid-procursus { };
  xcolor = callPackage ../tools/graphics/xcolor { };
  xcfun = callPackage ../development/libraries/science/chemistry/xcfun { };