Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / pkger / default.nix
blob073c57c013da817863f7a6c6c02ca9fd105478b9
1 { buildGoModule
2 , fetchFromGitHub
3 , lib
5 }:
7 buildGoModule rec {
8   pname = "pkger";
9   version = "0.17.1";
11   src = fetchFromGitHub {
12     owner = "markbates";
13     repo = "pkger";
14     rev = "v${version}";
15     hash = "sha256-nBuOC+uVw+hYSssgTkPRJZEBkufhQgU5D6jsZZre7Is=";
16   };
18   vendorHash = "sha256-9+2s84bqoNU3aaxmWYzIuFKPA3Tw9phXu5Csaaq/L60=";
20   doCheck = false;
22   meta = with lib; {
23     description = "Embed static files in Go binaries (replacement for gobuffalo/packr) ";
24     homepage = "https://github.com/markbates/pkger";
25     changelog = "https://github.com/markbates/pkger/releases/tag/v${version}";
26     license = licenses.mit;
27     maintainers = with maintainers; [ flokli ];
28   };