2021-01-23 15:26:19 +03:00
|
|
|
{ lib, stdenv, fetchurl, readline, ncurses }:
|
2017-10-04 20:44:42 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "devtodo";
|
2017-10-04 20:44:42 +03:00
|
|
|
version = "0.1.20";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 15:41:18 +03:00
|
|
|
url = "https://swapoff.org/files/devtodo/${pname}-${version}.tar.gz";
|
2017-10-04 20:44:42 +03:00
|
|
|
sha256 = "029y173njydzlznxmdizrrz4wcky47vqhl87fsb7xjcz9726m71p";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ readline ncurses ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-23 15:26:19 +03:00
|
|
|
meta = with lib; {
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://swapoff.org/devtodo1.html";
|
2017-10-04 20:44:42 +03:00
|
|
|
description = "A hierarchical command-line task manager";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.woffs ];
|
2017-10-08 19:53:28 +03:00
|
|
|
platforms = platforms.linux;
|
2017-10-04 20:44:42 +03:00
|
|
|
};
|
|
|
|
}
|