- add version ldflag - add nix-update-script passthru - add changelog reference - remove meta with lib
39 lines
885 B
Nix
39 lines
885 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "nom";
|
|
version = "2.13.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "guyfedwards";
|
|
repo = "nom";
|
|
tag = "v${version}";
|
|
hash = "sha256-dGQDxjvB5OX4ot22zt2zFu3T3h/clSRlfxhCpkPRePU=";
|
|
};
|
|
|
|
vendorHash = "sha256-d5KTDZKfuzv84oMgmsjJoXGO5XYLVKxOB5XehqgRvYw=";
|
|
|
|
ldflags = [
|
|
"-X 'main.version=${version}'"
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
homepage = "https://github.com/guyfedwards/nom";
|
|
changelog = "https://github.com/guyfedwards/nom/releases/tag/v${version}";
|
|
description = "RSS reader for the terminal";
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [
|
|
nadir-ishiguro
|
|
matthiasbeyer
|
|
];
|
|
mainProgram = "nom";
|
|
};
|
|
}
|