forked from mirrors/nixpkgs
tudu: init at 0.10
This commit is contained in:
parent
03c1f6db6a
commit
62dcb40fec
20
pkgs/applications/office/tudu/default.nix
Normal file
20
pkgs/applications/office/tudu/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ stdenv, fetchurl, ncurses }:
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "tudu-${version}";
|
||||
version = "0.10";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://code.meskio.net/tudu/${name}.tar.gz";
|
||||
sha256 = "0571wh5hn0hgadyx34zq1zi35pzd7vpwkavm7kzb9hwgn07443x4";
|
||||
};
|
||||
|
||||
buildInputs = [ ncurses ];
|
||||
|
||||
meta = {
|
||||
description = "ncurses-based hierarchical todo list manager with vim-like keybindings";
|
||||
homepage = "http://code.meskio.net/tudu/";
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -13269,6 +13269,8 @@ let
|
|||
|
||||
github-release = callPackage ../development/tools/github/github-release { };
|
||||
|
||||
tudu = callPackage ../applications/office/tudu { };
|
||||
|
||||
tuxguitar = callPackage ../applications/editors/music/tuxguitar { };
|
||||
|
||||
twister = callPackage ../applications/networking/p2p/twister { };
|
||||
|
|
Loading…
Reference in a new issue