3
0
Fork 0
forked from mirrors/nixpkgs
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 17:02:06 +01:00
{ stdenv, lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "goresym";
version = "1.2";
src = fetchFromGitHub {
owner = "mandiant";
repo = pname;
rev = "v${version}";
sha256 = "sha256-XDy6qALE2xuOVQHuuvU/gOyTRZ/6CWpyjN3i7VmznoI=";
};
subPackages = [ "." ];
vendorSha256 = "sha256-dnQ/tP4RS6WkACobfW7jTTJSHbLrdlZDy1fmO65743Q=";
doCheck = true;
meta = with lib; {
description = "Go symbol recovery tool";
homepage = "https://github.com/mandiant/GoReSym";
license = licenses.mit;
2022-06-07 16:28:49 +01:00
maintainers = with maintainers; [ thehedgeh0g ];
2022-06-02 17:02:06 +01:00
};
}