Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
23 lines
601 B
Nix
23 lines
601 B
Nix
{ lib, stdenv, fetchurl, readline, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "devtodo";
|
|
version = "0.1.20";
|
|
|
|
src = fetchurl {
|
|
url = "https://swapoff.org/files/devtodo/${pname}-${version}.tar.gz";
|
|
sha256 = "029y173njydzlznxmdizrrz4wcky47vqhl87fsb7xjcz9726m71p";
|
|
};
|
|
|
|
buildInputs = [ readline ncurses ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://swapoff.org/devtodo1.html";
|
|
description = "Hierarchical command-line task manager";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.woffs ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|