nixpkgs/pkgs/tools/misc/panicparse/default.nix
Fabián Heredia Montiel ff323ed355 treewide: vendorSha256 → vendorHash
via: `find pkgs/ -type f -exec sed -i 's/vendorSha256 = "sha256/vendorHash = "sha256/' {};`
2023-09-13 01:03:44 -06:00

28 lines
580 B
Nix

{ 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=";
subPackages = [ "." ];
meta = with lib; {
description = "Crash your app in style (Golang)";
homepage = "https://github.com/maruel/panicparse";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}