Merge pull request #193295 from fabaff/freeze

freeze: init at 1.1
This commit is contained in:
Fabian Affolter 2022-10-07 09:15:04 +02:00 committed by GitHub
commit 05a81784b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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;
};