extrude: init at 0.0.12

This commit is contained in:
Fabian Affolter 2022-01-26 21:15:34 +01:00
parent a01cad0d0f
commit f39d595147
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "extrude";
version = "0.0.12";
src = fetchFromGitHub {
owner = "liamg";
repo = pname;
rev = "v${version}";
hash = "sha256-7gCEBhnNU5CqC5n0KP4Dd/fmddPRwNqyMFXTrRrJjfU=";
};
vendorSha256 = "sha256-auhRXKt5dcQ+gr3a9Wfen8/BISP17HVsIRP16sBmiZM=";
meta = with lib; {
description = "Tool to analyse binaries for missing security features";
homepage = "https://github.com/liamg/extrude";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -2975,6 +2975,8 @@ with pkgs;
eternal-terminal = callPackage ../tools/networking/eternal-terminal {};
extrude = callPackage ../tools/security/extrude { };
f3 = callPackage ../tools/filesystems/f3 { };
f3d = callPackage ../applications/graphics/f3d {