10 stdenv.mkDerivation rec {
11 pname = "timewarrior";
14 src = fetchFromGitHub {
15 owner = "GothenburgBitFactory";
18 hash = "sha256-sc4AfdXLuA9evoGU6Z97+Hq7zj9nx093+nPALRkhziQ=";
19 fetchSubmodules = true;
28 dontUseCmakeBuildDir = true;
31 installShellCompletion --cmd timew \
32 --bash completion/timew-completion.bash
36 description = "Command-line time tracker";
37 homepage = "https://timewarrior.net";
38 license = licenses.mit;
39 maintainers = with maintainers; [
43 mainProgram = "timew";
44 platforms = platforms.linux ++ platforms.darwin;