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

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

29 lines
612 B
Nix
Raw Normal View History

2022-01-22 20:34:12 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "panicparse";
2023-10-13 00:30:46 +02:00
version = "2.3.1";
2022-01-22 20:34:12 +01:00
src = fetchFromGitHub {
owner = "maruel";
repo = pname;
rev = "v${version}";
2023-10-13 00:30:46 +02:00
sha256 = "sha256-KjWUubrHPJUJWvoa13EGEwTd5uNC0nrHAF8hzdnxEmY=";
2022-01-22 20:34:12 +01:00
};
2023-10-13 00:30:46 +02:00
vendorHash = "sha256-udkh/6Bu+7djxugMIuVsZvZ3JN2JooihsmcS2wJT0Wo=";
2022-01-22 20:34:12 +01:00
subPackages = [ "." ];
meta = with lib; {
description = "Crash your app in style (Golang)";
homepage = "https://github.com/maruel/panicparse";
license = licenses.asl20;
2023-07-23 19:30:22 +02:00
maintainers = with maintainers; [ ];
2023-11-27 02:17:53 +01:00
mainProgram = "panicparse";
2022-01-22 20:34:12 +01:00
};
}