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

28 lines
659 B
Nix
Raw Normal View History

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