python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / extrude / default.nix
blobe8d2b0784117812272ea4690c32950d714ce4bae
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "extrude";
8   version = "0.0.12";
10   src = fetchFromGitHub {
11     owner = "liamg";
12     repo = pname;
13     rev = "v${version}";
14     hash = "sha256-7gCEBhnNU5CqC5n0KP4Dd/fmddPRwNqyMFXTrRrJjfU=";
15   };
17   vendorSha256 = "sha256-8qjIYPkWtYTvl7wAnefpZAjbNSQLQFqRnGGccYZ8ZmU=";
19   meta = with lib; {
20     description = "Tool to analyse binaries for missing security features";
21     homepage = "https://github.com/liamg/extrude";
22     license = with licenses; [ mit ];
23     maintainers = with maintainers; [ fab ];
24   };