1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "extrude";
8 version = "0.0.12";
9
10 src = fetchFromGitHub {
11 owner = "liamg";
12 repo = pname;
13 rev = "v${version}";
14 hash = "sha256-7gCEBhnNU5CqC5n0KP4Dd/fmddPRwNqyMFXTrRrJjfU=";
15 };
16
17 vendorSha256 = "sha256-8qjIYPkWtYTvl7wAnefpZAjbNSQLQFqRnGGccYZ8ZmU=";
18
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 };
25}