1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "panicparse";
8 version = "2.3.1";
9
10 src = fetchFromGitHub {
11 owner = "maruel";
12 repo = pname;
13 rev = "v${version}";
14 sha256 = "sha256-KjWUubrHPJUJWvoa13EGEwTd5uNC0nrHAF8hzdnxEmY=";
15 };
16
17 vendorHash = "sha256-udkh/6Bu+7djxugMIuVsZvZ3JN2JooihsmcS2wJT0Wo=";
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; [ ];
26 mainProgram = "panicparse";
27 };
28}