tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
panicparse: init at 2.2.0
Sandro Jäckel
4 years ago
485d0fed
bcb79940
+29
2 changed files
expand all
collapse all
unified
split
pkgs
tools
misc
panicparse
default.nix
top-level
all-packages.nix
+27
pkgs/tools/misc/panicparse/default.nix
···
1
1
+
{ lib
2
2
+
, buildGoModule
3
3
+
, fetchFromGitHub
4
4
+
}:
5
5
+
6
6
+
buildGoModule rec {
7
7
+
pname = "panicparse";
8
8
+
version = "2.2.0";
9
9
+
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "maruel";
12
12
+
repo = pname;
13
13
+
rev = "v${version}";
14
14
+
sha256 = "sha256-Bwvxj9Ifcq2WpicUBK+03fbGuoVAVF2Zmtpy/utUxoo=";
15
15
+
};
16
16
+
17
17
+
vendorSha256 = "sha256-ZHUxzGqsGX1c4mBA4TBO2+WnGDhwAOGi0uYQx+3OgL8=";
18
18
+
19
19
+
subPackages = [ "." ];
20
20
+
21
21
+
meta = with lib; {
22
22
+
description = "Crash your app in style (Golang)";
23
23
+
homepage = "https://github.com/maruel/panicparse";
24
24
+
license = licenses.asl20;
25
25
+
maintainers = with maintainers; [ SuperSandro2000 ];
26
26
+
};
27
27
+
}
+2
pkgs/top-level/all-packages.nix
···
8104
8104
8105
8105
pandoc-plantuml-filter = python3Packages.callPackage ../tools/misc/pandoc-plantuml-filter { };
8106
8106
8107
8107
+
panicparse = callPackage ../tools/misc/panicparse { };
8108
8108
+
8107
8109
patray = callPackage ../tools/audio/patray { };
8108
8110
8109
8111
pasystray = callPackage ../tools/audio/pasystray { };