mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 01:15:51 +00:00
543cd40ecc
Done using `grep -rP 'description\s+=\s+"[^"]+[ ]";' | cut -d ':' -f 1 | xargs -i nvim {}` and sorting the opened files by hand, avoiding generated packages list
31 lines
718 B
Nix
31 lines
718 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "pkger";
|
|
version = "0.17.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "markbates";
|
|
repo = "pkger";
|
|
rev = "v${version}";
|
|
hash = "sha256-nBuOC+uVw+hYSssgTkPRJZEBkufhQgU5D6jsZZre7Is=";
|
|
};
|
|
|
|
vendorHash = "sha256-9+2s84bqoNU3aaxmWYzIuFKPA3Tw9phXu5Csaaq/L60=";
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Embed static files in Go binaries (replacement for gobuffalo/packr)";
|
|
mainProgram = "pkger";
|
|
homepage = "https://github.com/markbates/pkger";
|
|
changelog = "https://github.com/markbates/pkger/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ flokli ];
|
|
};
|
|
}
|