1{ buildGoModule
2, fetchFromGitHub
3, lib
4
5}:
6
7buildGoModule rec {
8 pname = "pkger";
9 version = "0.17.1";
10
11 src = fetchFromGitHub {
12 owner = "markbates";
13 repo = "pkger";
14 rev = "v${version}";
15 hash = "sha256-nBuOC+uVw+hYSssgTkPRJZEBkufhQgU5D6jsZZre7Is=";
16 };
17
18 vendorHash = "sha256-9+2s84bqoNU3aaxmWYzIuFKPA3Tw9phXu5Csaaq/L60=";
19
20 doCheck = false;
21
22 meta = with lib; {
23 description = "Embed static files in Go binaries (replacement for gobuffalo/packr) ";
24 mainProgram = "pkger";
25 homepage = "https://github.com/markbates/pkger";
26 changelog = "https://github.com/markbates/pkger/releases/tag/v${version}";
27 license = licenses.mit;
28 maintainers = with maintainers; [ flokli ];
29 };
30}