about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/office/tudu/default.nix
blob: dea3ea9731b0e8bbd0b68cf6fe8664d4c5afc497 (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.2";

  src = fetchurl {
    url = "https://code.meskio.net/tudu/${name}.tar.gz";
    sha256 = "1xsncvd1c6v8y0dzc5mspy9rrwc89pabhz6r2lihsirk83h2rqym";
  };

  buildInputs = [ ncurses ];

  meta = {
    description = "ncurses-based hierarchical todo list manager with vim-like keybindings";
    homepage = https://code.meskio.net/tudu/;
    license = stdenv.lib.licenses.gpl3;
    platforms = stdenv.lib.platforms.linux;
  };
}