Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 28 lines 728 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "timew-sync-server"; 9 version = "1.2.0"; 10 11 src = fetchFromGitHub { 12 owner = "timewarrior-synchronize"; 13 repo = "timew-sync-server"; 14 rev = "v${version}"; 15 hash = "sha256-3THRP+hydvq/dnxzUOFGeuu8//qL7pFN0RHJVxzgibI="; 16 }; 17 18 vendorHash = "sha256-w7I8PDQQeICDPln2Naf6whOg9qqOniTH/xs1/9luIVc="; 19 20 meta = with lib; { 21 homepage = "https://github.com/timewarrior-synchronize/timew-sync-server"; 22 description = "Server component of timewarrior synchronization application"; 23 license = licenses.mit; 24 maintainers = [ maintainers.joachimschmidt557 ]; 25 platforms = platforms.linux; 26 mainProgram = "timew-sync-server"; 27 }; 28}