about summary refs log tree commit diff
path: root/pkgs/applications/office/tudu/default.nix
blob: e41b0e4683fc677607887fdbbdb6c0c8e0f25889 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
  };
}