mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Merge pull request #11381 from magnetophon/tudu-master
tudu: init at 0.10
This commit is contained in:
commit
3272dbf65c
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;
|
||||
};
|
||||
}
|
@ -13273,6 +13273,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 New Issue
Block a user