biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / devtodo / default.nix
blob34fdd2c794e5633c13442b7e5fcf857b91fc2a85
1 { lib, stdenv, fetchurl, readline, ncurses }:
3 stdenv.mkDerivation rec {
4   pname = "devtodo";
5   version = "0.1.20";
7   src = fetchurl {
8     url = "https://swapoff.org/files/devtodo/${pname}-${version}.tar.gz";
9     sha256 = "029y173njydzlznxmdizrrz4wcky47vqhl87fsb7xjcz9726m71p";
10   };
12   buildInputs = [ readline ncurses ];
14   enableParallelBuilding = true;
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   };