mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
Merge pull request #245131 from TheRealKeto/init/ldid-procursus
ldid-procursus: init at 2.1.5-procursus7
This commit is contained in:
commit
e0e6b69099
@ -8710,6 +8710,11 @@
|
|||||||
githubId = 762421;
|
githubId = 762421;
|
||||||
name = "Pierre Thierry";
|
name = "Pierre Thierry";
|
||||||
};
|
};
|
||||||
|
keto = {
|
||||||
|
github = "TheRealKeto";
|
||||||
|
githubId = 24854941;
|
||||||
|
name = "Keto";
|
||||||
|
};
|
||||||
ketzacoatl = {
|
ketzacoatl = {
|
||||||
email = "ketzacoatl@protonmail.com";
|
email = "ketzacoatl@protonmail.com";
|
||||||
github = "ketzacoatl";
|
github = "ketzacoatl";
|
||||||
|
29
pkgs/development/tools/ldid-procursus/default.nix
Normal file
29
pkgs/development/tools/ldid-procursus/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ 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;
|
||||||
|
};
|
||||||
|
})
|
@ -41492,6 +41492,8 @@ with pkgs;
|
|||||||
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
|
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ldid-procursus = callPackage ../development/tools/ldid-procursus { };
|
||||||
|
|
||||||
xcolor = callPackage ../tools/graphics/xcolor { };
|
xcolor = callPackage ../tools/graphics/xcolor { };
|
||||||
|
|
||||||
xcfun = callPackage ../development/libraries/science/chemistry/xcfun { };
|
xcfun = callPackage ../development/libraries/science/chemistry/xcfun { };
|
||||||
|
Loading…
Reference in New Issue
Block a user