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
604 B
Nix
Raw Normal View History

2022-06-02 18:02:06 +02:00
{ stdenv, lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "goresym";
2022-11-19 03:22:04 +01:00
version = "1.8";
2022-06-02 18:02:06 +02:00
src = fetchFromGitHub {
owner = "mandiant";
repo = pname;
rev = "v${version}";
2022-11-19 03:22:04 +01:00
sha256 = "sha256-GFr3ppZJsGwi3dyrlpIjYrdJ2QYp2i01SX+EKEAmDE8=";
2022-06-02 18:02:06 +02:00
};
subPackages = [ "." ];
2022-11-19 03:22:04 +01:00
vendorSha256 = "sha256-ElV5edbe1LQWbA1NKv52/rLZJeOLBahE4YBKg9OA7YY=";
2022-06-02 18:02:06 +02:00
doCheck = true;
meta = with lib; {
description = "Go symbol recovery tool";
homepage = "https://github.com/mandiant/GoReSym";
license = licenses.mit;
2022-06-07 17:28:49 +02:00
maintainers = with maintainers; [ thehedgeh0g ];
2022-06-02 18:02:06 +02:00
};
}