about summary refs log tree commit diff
path: root/pkgs/tools/security/freeze/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/security/freeze/default.nix')
-rw-r--r--pkgs/tools/security/freeze/default.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/tools/security/freeze/default.nix b/pkgs/tools/security/freeze/default.nix
deleted file mode 100644
index 28ef21657009..000000000000
--- a/pkgs/tools/security/freeze/default.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ lib
-, stdenv
-, buildGoModule
-, fetchFromGitHub
-}:
-
-buildGoModule rec {
-  pname = "freeze";
-  version = "1.3";
-
-  src = fetchFromGitHub {
-    owner = "optiv";
-    repo = "Freeze";
-    rev = "v${version}";
-    hash = "sha256-BE5MvCU+NfEccauOdWNty/FwMiWwLttPh7eE9+UzEMY=";
-  };
-
-  vendorHash = "sha256-R8kdFweMhAUjJ8zJ7HdF5+/vllbNmARdhU4hOw4etZo=";
-
-  ldflags = [
-    "-s"
-    "-w"
-  ];
-
-  postInstall = lib.optionalString (!stdenv.isDarwin) ''
-    mv $out/bin/Freeze $out/bin/freeze
-  '';
-
-  meta = with lib; {
-    description = "Payload toolkit for bypassing EDRs";
-    mainProgram = "freeze";
-    homepage = "https://github.com/optiv/Freeze";
-    license = licenses.mit;
-    maintainers = with maintainers; [ fab ];
-  };
-}