Merge pull request #308051 from redyf/add-pom
pom: init at unstable-2024-04-29
This commit is contained in:
commit
3be8d40ec9
2 changed files with 31 additions and 0 deletions
|
@ -16841,6 +16841,12 @@
|
|||
githubId = 18155001;
|
||||
name = "Gabe Dunn";
|
||||
};
|
||||
redyf = {
|
||||
email = "mateusalvespereira7@gmail.com";
|
||||
github = "redyf";
|
||||
githubId = 98139059;
|
||||
name = "Mateus Alves";
|
||||
};
|
||||
reedrw = {
|
||||
email = "reedrw5601@gmail.com";
|
||||
github = "reedrw";
|
||||
|
|
25
pkgs/by-name/po/pom/package.nix
Normal file
25
pkgs/by-name/po/pom/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue