nixpkgs/pkgs/development/tools/devtodo/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
603 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, readline, ncurses }:
2017-10-04 17:44:42 +00:00
stdenv.mkDerivation rec {
pname = "devtodo";
2017-10-04 17:44:42 +00:00
version = "0.1.20";
src = fetchurl {
url = "https://swapoff.org/files/devtodo/${pname}-${version}.tar.gz";
2017-10-04 17:44:42 +00:00
sha256 = "029y173njydzlznxmdizrrz4wcky47vqhl87fsb7xjcz9726m71p";
};
buildInputs = [ readline ncurses ];
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://swapoff.org/devtodo1.html";
2017-10-04 17:44:42 +00:00
description = "A hierarchical command-line task manager";
license = licenses.gpl2;
maintainers = [ maintainers.woffs ];
platforms = platforms.linux;
2017-10-04 17:44:42 +00:00
};
}