mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
27 lines
643 B
Nix
27 lines
643 B
Nix
{ cctools
|
|
, darwin
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
}:
|
|
|
|
darwin.sigtool.overrideAttrs (old: {
|
|
# this is a fork of sigtool that supports -v and --remove-signature, which are
|
|
# used by the dotnet sdk
|
|
src = fetchFromGitHub {
|
|
owner = "corngood";
|
|
repo = "sigtool";
|
|
rev = "new-commands";
|
|
sha256 = "sha256-EVM5ZG3sAHrIXuWrnqA9/4pDkJOpWCeBUl5fh0mkK4k=";
|
|
};
|
|
|
|
nativeBuildInputs = old.nativeBuildInputs or [] ++ [
|
|
makeWrapper
|
|
];
|
|
|
|
postInstall = old.postInstall or "" + ''
|
|
wrapProgram $out/bin/codesign \
|
|
--set-default CODESIGN_ALLOCATE \
|
|
"${cctools}/bin/${cctools.targetPrefix}codesign_allocate"
|
|
'';
|
|
})
|