acr-cli: init at 0.14 (#359508)
[NixPkgs.git] / pkgs / by-name / go / go-bindata / package.nix
blob7877313b9d50c8c4aff5566dcce32e6377886fed
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "go-bindata";
5   version = "4.0.2";
7   src = fetchFromGitHub {
8     owner = "kevinburke";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-3/1RqJrv1fsPKsZpurp2dHsMg8FJBcFlI/pwwCf5H6E=";
12   };
14   vendorHash = null;
16   subPackages = [ "go-bindata" ];
18   ldflags = [ "-s" "-w" ];
20   meta = with lib; {
21     homepage = "https://github.com/kevinburke/go-bindata";
22     changelog = "https://github.com/kevinburke/go-bindata/blob/v${version}/CHANGELOG.md";
23     description = "Small utility which generates Go code from any file, useful for embedding binary data in a Go program";
24     mainProgram = "go-bindata";
25     maintainers = [ ];
26     license = licenses.cc0;
27   };