ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / ca / canard / package.nix
blob8883d0781e52780b4cdd746d391870468744da81
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "canard";
9   version = "0.0.2-unstable-2024-04-22";
11   src = fetchFromGitHub {
12     owner = "mrusme";
13     repo = "canard";
14     rev = "d3c37d11078574ca16b75475b3d08ffe351bc3c2";
15     hash = "sha256-ICrTEaTYFAViORWvdj4uW2gLgxtWxRlhgu5sifgqGX0=";
16   };
18   vendorHash = "sha256-qcfPW7rz0v63QmQQceQltkCFNBUeQTxVerxDymv7SZo=";
20   ldflags = [
21     "-s"
22     "-w"
23     "-X github.com/mrusme/canard/main.VERSION=${version}"
24   ];
26   meta = {
27     description = "Command line TUI client for the journalist RSS aggregator";
28     homepage = "https://github.com/mrusme/canard";
29     license = lib.licenses.gpl3Only;
30     maintainers = with lib.maintainers; [ moraxyc ];
31     mainProgram = "canard";
32   };