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

28 lines
661 B
Nix
Raw Normal View History

{ stdenv, cmake, fetchurl, ncurses }:
2015-01-16 00:20:42 +03:00
let
2016-02-02 23:23:07 +03:00
version = "1.2";
2015-01-16 00:20:42 +03:00
in
stdenv.mkDerivation {
name = "ctodo-${version}";
src = fetchurl {
2016-02-02 23:23:07 +03:00
url = "https://github.com/Acolarh/ctodo/archive/v${version}.tar.gz";
sha256 = "0kjd84q8aw238z09yz9n1p732fh08vijaf8bk1xqlx544cgyfcjm";
2015-01-16 00:20:42 +03:00
};
buildInputs = [ stdenv cmake ncurses ];
configurePhase = ''
cmake -DCMAKE_INSTALL_PREFIX=$out .
'';
meta = {
homepage = "http://ctodo.apakoh.dk/";
2015-04-28 11:54:58 +03:00
description = "A simple ncurses-based task list manager";
2015-01-16 00:20:42 +03:00
license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
2015-01-16 19:18:06 +03:00
platforms = stdenv.lib.platforms.linux;
2015-01-16 00:20:42 +03:00
};
}