1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "panicparse";
8 version = "2.2.0";
9
10 src = fetchFromGitHub {
11 owner = "maruel";
12 repo = pname;
13 rev = "v${version}";
14 sha256 = "sha256-Bwvxj9Ifcq2WpicUBK+03fbGuoVAVF2Zmtpy/utUxoo=";
15 };
16
17 vendorSha256 = "sha256-ZHUxzGqsGX1c4mBA4TBO2+WnGDhwAOGi0uYQx+3OgL8=";
18
19 subPackages = [ "." ];
20
21 meta = with lib; {
22 description = "Crash your app in style (Golang)";
23 homepage = "https://github.com/maruel/panicparse";
24 license = licenses.asl20;
25 maintainers = with maintainers; [ SuperSandro2000 ];
26 };
27}