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

28 lines
661 B
Nix
Raw Normal View History

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