nixpkgs/pkgs/tools/misc/panicparse/default.nix

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

28 lines
580 B
Nix
Raw Normal View History

2022-01-22 19:34:12 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "panicparse";
version = "2.2.0";
src = fetchFromGitHub {
owner = "maruel";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Bwvxj9Ifcq2WpicUBK+03fbGuoVAVF2Zmtpy/utUxoo=";
};
vendorHash = "sha256-ZHUxzGqsGX1c4mBA4TBO2+WnGDhwAOGi0uYQx+3OgL8=";
2022-01-22 19:34:12 +00:00
subPackages = [ "." ];
meta = with lib; {
description = "Crash your app in style (Golang)";
homepage = "https://github.com/maruel/panicparse";
license = licenses.asl20;
2023-07-23 17:30:22 +00:00
maintainers = with maintainers; [ ];
2022-01-22 19:34:12 +00:00
};
}