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

ldid-procursus: init at 2.1.5-procursus7

authored by

Pol Dellaiera and committed by
GitHub
e0e6b690 ae0d0f19

+36
+5
maintainers/maintainer-list.nix
··· 8710 8710 githubId = 762421; 8711 8711 name = "Pierre Thierry"; 8712 8712 }; 8713 + keto = { 8714 + github = "TheRealKeto"; 8715 + githubId = 24854941; 8716 + name = "Keto"; 8717 + }; 8713 8718 ketzacoatl = { 8714 8719 email = "ketzacoatl@protonmail.com"; 8715 8720 github = "ketzacoatl";
+29
pkgs/development/tools/ldid-procursus/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , pkg-config 5 + , libplist 6 + , openssl 7 + }: 8 + 9 + stdenv.mkDerivation (finalAttrs: { 10 + pname = "ldid-procursus"; 11 + version = "2.1.5-procursus7"; 12 + src = fetchFromGitHub { 13 + owner = "ProcursusTeam"; 14 + repo = "ldid"; 15 + rev = "v${finalAttrs.version}"; 16 + hash = "sha256-QnSmWY9zCOPYAn2VHc5H+VQXjTCyr0EuosxvKGGpDtQ="; 17 + }; 18 + nativeBuildInputs = [ pkg-config libplist openssl ]; 19 + stripDebugFlags = [ "--strip-unneeded" ]; 20 + makeFlags = [ "PREFIX=${placeholder "out"}" ]; 21 + 22 + meta = with lib; { 23 + description = "Put real or fake signatures in a Mach-O binary"; 24 + homepage = "https://github.com/ProcursusTeam/ldid"; 25 + maintainers = with maintainers; [ keto ]; 26 + platforms = platforms.unix; 27 + license = licenses.agpl3Only; 28 + }; 29 + })
+2
pkgs/top-level/all-packages.nix
··· 41492 41492 inherit (darwin.apple_sdk.frameworks) CoreFoundation Security; 41493 41493 }; 41494 41494 41495 + ldid-procursus = callPackage ../development/tools/ldid-procursus { }; 41496 + 41495 41497 xcolor = callPackage ../tools/graphics/xcolor { }; 41496 41498 41497 41499 xcfun = callPackage ../development/libraries/science/chemistry/xcfun { };