mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
todolist: init at 0.8
This commit is contained in:
parent
fa3718777e
commit
300a28bb31
@ -3670,6 +3670,11 @@
|
||||
github = "utdemir";
|
||||
name = "Utku Demir";
|
||||
};
|
||||
uvnikita = {
|
||||
email = "uv.nikita@gmail.com";
|
||||
github = "uvNikita";
|
||||
name = "Nikita Uvarov";
|
||||
};
|
||||
uwap = {
|
||||
email = "me@uwap.name";
|
||||
github = "uwap";
|
||||
|
22
pkgs/applications/misc/todolist/default.nix
Normal file
22
pkgs/applications/misc/todolist/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "todolist-${version}";
|
||||
version = "0.8";
|
||||
|
||||
goPackagePath = "github.com/gammons/todolist";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "gammons";
|
||||
repo = "todolist";
|
||||
rev = "${version}";
|
||||
sha256 = "0agv9a44q81qr960b7m1jxk0pb8ahk6lvmzmijvw4v6mbip2720z";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Simple GTD-style todo list for the command line";
|
||||
homepage = "http://todolist.site";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ uvnikita ];
|
||||
};
|
||||
}
|
@ -8204,6 +8204,8 @@ with pkgs;
|
||||
|
||||
texi2mdoc = callPackage ../tools/misc/texi2mdoc { };
|
||||
|
||||
todolist = callPackage ../applications/misc/todolist { };
|
||||
|
||||
travis = callPackage ../development/tools/misc/travis { };
|
||||
|
||||
tweak = callPackage ../applications/editors/tweak { };
|
||||
|
Loading…
Reference in New Issue
Block a user