lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 24 lines 606 B view raw
1{ lib, stdenv, fetchFromGitHub, cmake, ncurses, readline }: 2 3stdenv.mkDerivation rec { 4 pname = "ctodo"; 5 version = "1.3"; 6 7 src = fetchFromGitHub { 8 owner = "Acolarh"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "0mqy5b35cbdwfpbs91ilsgz3wc4cky38xfz9pnr4q88q1vybigna"; 12 }; 13 14 nativeBuildInputs = [ cmake ]; 15 buildInputs = [ ncurses readline ]; 16 17 meta = with lib; { 18 homepage = "http://ctodo.apakoh.dk/"; 19 description = "A simple ncurses-based task list manager"; 20 license = licenses.mit; 21 maintainers = [ maintainers.matthiasbeyer ]; 22 platforms = platforms.unix; 23 }; 24}