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