nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 27 lines 615 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "extrude"; 9 version = "0.0.12"; 10 11 src = fetchFromGitHub { 12 owner = "liamg"; 13 repo = "extrude"; 14 rev = "v${version}"; 15 hash = "sha256-7gCEBhnNU5CqC5n0KP4Dd/fmddPRwNqyMFXTrRrJjfU="; 16 }; 17 18 vendorHash = "sha256-8qjIYPkWtYTvl7wAnefpZAjbNSQLQFqRnGGccYZ8ZmU="; 19 20 meta = { 21 description = "Tool to analyse binaries for missing security features"; 22 mainProgram = "extrude"; 23 homepage = "https://github.com/liamg/extrude"; 24 license = with lib.licenses; [ mit ]; 25 maintainers = with lib.maintainers; [ fab ]; 26 }; 27}