1{
2 lib,
3 stdenv,
4 fetchurl,
5 readline,
6 ncurses,
7}:
8
9stdenv.mkDerivation rec {
10 pname = "devtodo";
11 version = "0.1.20";
12
13 src = fetchurl {
14 url = "https://swapoff.org/files/devtodo/${pname}-${version}.tar.gz";
15 sha256 = "029y173njydzlznxmdizrrz4wcky47vqhl87fsb7xjcz9726m71p";
16 };
17
18 buildInputs = [
19 readline
20 ncurses
21 ];
22
23 enableParallelBuilding = true;
24
25 meta = with lib; {
26 homepage = "https://swapoff.org/devtodo1.html";
27 description = "Hierarchical command-line task manager";
28 license = licenses.gpl2;
29 maintainers = [ maintainers.woffs ];
30 platforms = platforms.linux;
31 };
32}