mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-15 11:37:57 +00:00
canard: init at 0.0.2-unstable-2024-04-22
This commit is contained in:
parent
9bbc9cf36d
commit
8b96fcbd95
33
pkgs/by-name/ca/canard/package.nix
Normal file
33
pkgs/by-name/ca/canard/package.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "canard";
|
||||
version = "0.0.2-unstable-2024-04-22";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mrusme";
|
||||
repo = "canard";
|
||||
rev = "d3c37d11078574ca16b75475b3d08ffe351bc3c2";
|
||||
hash = "sha256-ICrTEaTYFAViORWvdj4uW2gLgxtWxRlhgu5sifgqGX0=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-qcfPW7rz0v63QmQQceQltkCFNBUeQTxVerxDymv7SZo=";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
"-X github.com/mrusme/canard/main.VERSION=${version}"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Command line TUI client for the journalist RSS aggregator";
|
||||
homepage = "https://github.com/mrusme/canard";
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ moraxyc ];
|
||||
mainProgram = "canard";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user