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

25 lines
643 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, libuuid, gnutls }:
2016-04-01 07:46:48 +00:00
stdenv.mkDerivation rec {
name = "timewarrior-${version}";
2018-02-21 01:18:52 +00:00
version = "1.1.1";
2016-04-01 07:46:48 +00:00
enableParallelBuilding = true;
src = fetchurl {
url = "https://taskwarrior.org/download/timew-${version}.tar.gz";
2018-02-21 01:18:52 +00:00
sha256 = "1jfcfzdwk5qqhxznj1bgy0sx3lnp3z5lqr9kch9a7iazwmi9lz8z";
2016-04-01 07:46:48 +00:00
};
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "A command-line time tracker";
homepage = https://tasktools.org/projects/timewarrior.html;
2016-04-01 07:46:48 +00:00
license = licenses.mit;
maintainers = with maintainers; [ mrVanDalo ];
2018-03-13 16:30:51 +00:00
platforms = platforms.linux ++ platforms.darwin;
2016-04-01 07:46:48 +00:00
};
}