depot/pkgs/development/tools/devtodo/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

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;
};
}