freeze: init at 1.1

This commit is contained in:
Fabian Affolter 2022-10-06 15:55:14 +02:00
parent 0198610c3a
commit 7ea673c3b0
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "freeze";
version = "1.1";
src = fetchFromGitHub {
owner = "optiv";
repo = "Freeze";
rev = "v${version}";
hash = "sha256-ySwd7xs9JdJuBvqKC4jI/qA6qVHbYPPUEG7k6joSkRk=";
};
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";
homepage = "https://github.com/optiv/Freeze";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -6637,6 +6637,8 @@ with pkgs;
freetube = callPackage ../applications/video/freetube { };
freeze = callPackage ../tools/security/freeze { };
freqtweak = callPackage ../applications/audio/freqtweak {
wxGTK = wxGTK31-gtk2;
};