about summary refs log tree commit diff
path: root/pkgs/development/compilers/dotnet/sigtool.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/dotnet/sigtool.nix')
-rw-r--r--pkgs/development/compilers/dotnet/sigtool.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/development/compilers/dotnet/sigtool.nix b/pkgs/development/compilers/dotnet/sigtool.nix
deleted file mode 100644
index 658ee578ae98..000000000000
--- a/pkgs/development/compilers/dotnet/sigtool.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ darwin
-, fetchFromGitHub
-, makeWrapper
-}:
-let
-  cctools = darwin.cctools;
-
-in 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"
-  '';
-})