mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 05:13:04 +00:00
35 lines
786 B
Nix
35 lines
786 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "journalist";
|
|
version = "1.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mrusme";
|
|
repo = "journalist";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-3MnkndG2c4P3oprIRbzj26oAutEmAgsUx8mjlaDLrkI=";
|
|
};
|
|
|
|
vendorHash = "sha256-2EJ96dhhU7FZxMkHOmQo79WCHu8U1AGgFf47FIuQdek=s";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/mrusme/journalist/journalistd.VERSION=${version}"
|
|
];
|
|
|
|
meta = {
|
|
description = "RSS aggregator";
|
|
homepage = "https://github.com/mrusme/journalist";
|
|
changelog = "https://github.com/mrusme/journalist/releases/tag/v${version}";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ moraxyc ];
|
|
mainProgram = "journalist";
|
|
};
|
|
}
|