pom: init at unstable-2024-04-29

This commit is contained in:
Redyf 2024-04-30 14:08:33 -03:00
parent 815e6eb4b9
commit b49450861d

View File

@ -0,0 +1,25 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "pom";
version = "0-unstable-2024-04-29";
src = fetchFromGitHub {
owner = "maaslalani";
repo = "pom";
rev = "a8a2da7043f222b9c849d1ea93726433980469c0";
hash = "sha256-EAt0Q0gSHngQj2G4qYM3zhUGkl/vqa7J36iajlH4dzs=";
};
vendorHash = "sha256-2ghUITtL6RDRVqAZZ+PMj4sYDuh4VaKtGT11eSMlBiA=";
ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
meta = with lib; {
description = "Pomodoro timer in your terminal";
homepage = "https://github.com/maaslalani/pom";
license = licenses.mit;
maintainers = with maintainers; [ maaslalani redyf ];
mainProgram = "pom";
};
}