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