nixpkgs/pkgs/development/tools/goresym/default.nix

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

27 lines
602 B
Nix
Raw Normal View History

2022-06-02 16:02:06 +00:00
{ stdenv, lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "goresym";
2023-04-18 13:27:06 +00:00
version = "2.3";
2022-06-02 16:02:06 +00:00
src = fetchFromGitHub {
owner = "mandiant";
repo = pname;
rev = "v${version}";
2023-04-18 13:27:06 +00:00
sha256 = "sha256-o2t542q6UGjWdhJkcAm34kGhPUGNsvZKf940T+vydoE=";
2022-06-02 16:02:06 +00:00
};
subPackages = [ "." ];
2023-02-10 00:11:29 +00:00
vendorHash = "sha256-ElV5edbe1LQWbA1NKv52/rLZJeOLBahE4YBKg9OA7YY=";
2022-06-02 16:02:06 +00:00
doCheck = true;
meta = with lib; {
description = "Go symbol recovery tool";
homepage = "https://github.com/mandiant/GoReSym";
license = licenses.mit;
2022-06-07 15:28:49 +00:00
maintainers = with maintainers; [ thehedgeh0g ];
2022-06-02 16:02:06 +00:00
};
}