2019-11-24 14:42:09 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake }:
|
2016-04-01 09:46:48 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "timewarrior";
|
2020-05-20 10:23:18 +02:00
|
|
|
version = "1.3.0";
|
2016-04-01 09:46:48 +02:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-11-24 14:42:09 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "GothenburgBitFactory";
|
|
|
|
repo = "timewarrior";
|
|
|
|
rev = "v${version}";
|
2020-05-20 10:23:18 +02:00
|
|
|
sha256 = "1aijh1ad7gpa61cn7b57w24vy7fyjj0zx5k9z8d6m1ldzbw589cl";
|
2019-11-24 14:42:09 +01:00
|
|
|
fetchSubmodules = true;
|
2016-04-01 09:46:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A command-line time tracker";
|
2020-03-03 09:50:50 +01:00
|
|
|
homepage = "https://timewarrior.net";
|
2016-04-01 09:46:48 +02:00
|
|
|
license = licenses.mit;
|
2019-02-20 19:52:48 +01:00
|
|
|
maintainers = with maintainers; [ matthiasbeyer mrVanDalo ];
|
2018-03-13 17:30:51 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2016-04-01 09:46:48 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|