nixpkgs/pkgs/applications/misc/ctodo/default.nix

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

25 lines
606 B
Nix
Raw Normal View History

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