summary refs log tree commit diff
path: root/pkgs/development/libraries/pkger/default.nix
blob: f2e984c8c81622d874939dbc56244341140a2e67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ buildGoModule
, fetchFromGitHub
, lib

}:

buildGoModule rec {
  pname = "pkger";
  version = "0.17.1";

  src = fetchFromGitHub {
    owner = "markbates";
    repo = "pkger";
    rev = "v${version}";
    sha256 = "12zcvsd6bv581wwhahp1wy903495s51lw86b99cfihwmxc5qw6ww";
  };

  vendorSha256 = "1b9gpym6kb4hpdbrixphfh1qylmqr265jrmcd4vxb87ahvrsrvgp";

  doCheck = false;

  meta = with lib; {
    description = "Embed static files in Go binaries (replacement for gobuffalo/packr) ";
    homepage = "https://github.com/markbates/pkger";
    changelog = "https://github.com/markbates/pkger/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ flokli ];
  };
}