Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 24.05-beta 23 lines 603 B view raw
1{ lib, stdenv, fetchurl, readline, ncurses }: 2 3stdenv.mkDerivation rec { 4 pname = "devtodo"; 5 version = "0.1.20"; 6 7 src = fetchurl { 8 url = "https://swapoff.org/files/devtodo/${pname}-${version}.tar.gz"; 9 sha256 = "029y173njydzlznxmdizrrz4wcky47vqhl87fsb7xjcz9726m71p"; 10 }; 11 12 buildInputs = [ readline ncurses ]; 13 14 enableParallelBuilding = true; 15 16 meta = with lib; { 17 homepage = "https://swapoff.org/devtodo1.html"; 18 description = "A hierarchical command-line task manager"; 19 license = licenses.gpl2; 20 maintainers = [ maintainers.woffs ]; 21 platforms = platforms.linux; 22 }; 23}