bitwarden-desktop: 2024.12.0 -> 2024.12.1 (#373177)
[NixPkgs.git] / pkgs / by-name / po / pom / package.nix
blob843012a86335f35d7c7e2b1bda16707fec9aac1d
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "pom";
9   version = "0.1.0-unstable-2024-05-17";
11   src = fetchFromGitHub {
12     owner = "maaslalani";
13     repo = "pom";
14     rev = "699204a6db4f942ee6a6bf0dc389709ab6e1663f";
15     hash = "sha256-Qc4gU2oCgI/B788NuEqB+FoAYZQ84m5K3eArcdz+q20=";
16   };
18   vendorHash = "sha256-xJNcFX+sZjZwXFTNrhsDnj3eR/r8+NH6tzpEJOhtkeY=";
20   ldflags = [
21     "-s"
22     "-w"
23     "-X=main.Version=${version}"
24   ];
26   meta = with lib; {
27     description = "Pomodoro timer in your terminal";
28     homepage = "https://github.com/maaslalani/pom";
29     license = licenses.mit;
30     maintainers = with maintainers; [
31       maaslalani
32       redyf
33     ];
34     mainProgram = "pom";
35   };