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

28 lines
667 B
Nix
Raw Normal View History

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