mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
29 lines
763 B
Nix
29 lines
763 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "go-bindata";
|
|
version = "4.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kevinburke";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-3/1RqJrv1fsPKsZpurp2dHsMg8FJBcFlI/pwwCf5H6E=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
subPackages = [ "go-bindata" ];
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/kevinburke/go-bindata";
|
|
changelog = "https://github.com/kevinburke/go-bindata/blob/v${version}/CHANGELOG.md";
|
|
description = "A small utility which generates Go code from any file, useful for embedding binary data in a Go program";
|
|
mainProgram = "go-bindata";
|
|
maintainers = with maintainers; [ ];
|
|
license = licenses.cc0;
|
|
};
|
|
}
|