mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
Merge pull request #37463 from uvNikita/add/todolist
todolist: init at 0.8
This commit is contained in:
commit
e5b98c871e
|
@ -3675,6 +3675,11 @@
|
||||||
github = "utdemir";
|
github = "utdemir";
|
||||||
name = "Utku Demir";
|
name = "Utku Demir";
|
||||||
};
|
};
|
||||||
|
uvnikita = {
|
||||||
|
email = "uv.nikita@gmail.com";
|
||||||
|
github = "uvNikita";
|
||||||
|
name = "Nikita Uvarov";
|
||||||
|
};
|
||||||
uwap = {
|
uwap = {
|
||||||
email = "me@uwap.name";
|
email = "me@uwap.name";
|
||||||
github = "uwap";
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -8211,6 +8211,8 @@ with pkgs;
|
||||||
|
|
||||||
texi2mdoc = callPackage ../tools/misc/texi2mdoc { };
|
texi2mdoc = callPackage ../tools/misc/texi2mdoc { };
|
||||||
|
|
||||||
|
todolist = callPackage ../applications/misc/todolist { };
|
||||||
|
|
||||||
travis = callPackage ../development/tools/misc/travis { };
|
travis = callPackage ../development/tools/misc/travis { };
|
||||||
|
|
||||||
tweak = callPackage ../applications/editors/tweak { };
|
tweak = callPackage ../applications/editors/tweak { };
|
||||||
|
|
Loading…
Reference in a new issue