summary refs log tree commit diff
path: root/pkgs/applications/office/tudu/default.nix
blob: 76ad47950c491c0d772279a2e31a029017b167b7 (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;
  };
}