dcff78f580
This update roughly includes the following changes: * Spanish es-ES translation * New configuration option: print.empty.columns * Much improved Asian character support * More virtual tags * Improved bash completion * Task modification time * Stats show blocked and blocking tasks * New 'blocking' report * Additional color rules * New helper commands for third-party tools * 'columns' command searchable * New date shortcuts 'socm' and 'eocm' * Improved push/pull messages For a full list of changes, please head over to: http://taskwarrior.org/projects/taskwarrior/wiki/Changelog Signed-off-by: aszlig <aszlig@redmoonstudios.org>
24 lines
601 B
Nix
24 lines
601 B
Nix
{stdenv, fetchurl, cmake}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "taskwarrior-${version}";
|
|
version = "2.2.0";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
src = fetchurl {
|
|
url = "http://www.taskwarrior.org/download/task-${version}.tar.gz";
|
|
sha256 = "057fh50qp9bd5s08rw51iybpamn55v5nhn3s6ds89g76hp95vqir";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = {
|
|
description = "GTD (getting things done) implementation";
|
|
homepage = http://taskwarrior.org;
|
|
license = stdenv.lib.licenses.mit;
|
|
maintainers = [stdenv.lib.maintainers.marcweber];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|