Merge pull request #142438 from noisersup/submit/geek-life

geek-life: init at 0.1.2
conduit-nginx
figsoda 2021-10-21 08:03:39 -04:00 committed by GitHub
commit 78476ea088
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 0 deletions

View File

@ -8249,6 +8249,12 @@
githubId = 810877;
name = "Tom Doggett";
};
noisersup = {
email = "patryk@kwiatek.xyz";
github = "noisersup";
githubId = 42322511;
name = "Patryk Kwiatek";
};
nomeata = {
email = "mail@joachim-breitner.de";
github = "nomeata";

View File

@ -0,0 +1,26 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "geek-life";
version = "0.1.2";
src = fetchFromGitHub {
owner = "ajaxray";
repo = "geek-life";
rev = "v${version}";
sha256 = "083y2kv5vb217ghy9g2qylqgdgbjjggjj3cq454csnn3cjgq9zfh";
};
vendorSha256 = "05fcnmg2rygccf65r8js6kbijx740vfnvbrc035bjs1jvdw29h9j";
postInstall = ''
mv $out/bin/app $out/bin/geek-life
'';
meta = with lib; {
homepage = "https://github.com/ajaxray/geek-life";
description = "The Todo List / Task Manager for Geeks in command line";
maintainers = with maintainers; [ noisersup ];
license = licenses.mit;
};
}

View File

@ -24627,6 +24627,8 @@ with pkgs;
geany = callPackage ../applications/editors/geany { };
geany-with-vte = callPackage ../applications/editors/geany/with-vte.nix { };
geek-life = callPackage ../applications/misc/geek-life { };
genact = callPackage ../applications/misc/genact { };
genxword = callPackage ../applications/misc/genxword { };