2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, ncurses, readline }:
|
2015-01-15 22:20:42 +01:00
|
|
|
|
2017-09-13 18:29:47 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "ctodo";
|
2017-09-13 18:29:47 +02:00
|
|
|
version = "1.3";
|
2015-01-15 22:20:42 +01:00
|
|
|
|
2021-01-01 05:49:29 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Acolarh";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0mqy5b35cbdwfpbs91ilsgz3wc4cky38xfz9pnr4q88q1vybigna";
|
2015-01-15 22:20:42 +01:00
|
|
|
};
|
|
|
|
|
2021-01-01 05:49:29 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ ncurses readline ];
|
2015-01-15 22:20:42 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://ctodo.apakoh.dk/";
|
2015-04-28 10:54:58 +02:00
|
|
|
description = "A simple ncurses-based task list manager";
|
2021-01-01 05:49:29 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.matthiasbeyer ];
|
|
|
|
platforms = platforms.unix;
|
2015-01-15 22:20:42 +01:00
|
|
|
};
|
|
|
|
}
|