nixpkgs/pkgs/tools/security/dismap/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
573 B
Nix
Raw Normal View History

2021-10-04 08:39:29 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "dismap";
2022-07-08 07:52:50 +00:00
version = "0.4";
2021-10-04 08:39:29 +00:00
src = fetchFromGitHub {
owner = "zhzyker";
repo = pname;
rev = "v${version}";
2022-07-08 07:52:50 +00:00
sha256 = "sha256-YjjiS6iLIQvrPS378v2nyrgwWBJ9YtDeNTPz0ze05mU=";
2021-10-04 08:39:29 +00:00
};
2022-03-03 04:28:05 +00:00
vendorSha256 = "sha256-GnchyE2TswvjYlehhMYesZruTTwyTorfR+17K0RXXFY=";
2021-10-04 08:39:29 +00:00
meta = with lib; {
description = "Asset discovery and identification tools";
homepage = "https://github.com/zhzyker/dismap";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}