nixpkgs-suyu/pkgs/applications/misc/timew-sync-server/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
658 B
Nix
Raw Normal View History

2021-05-08 11:23:37 +02:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "timew-sync-server";
2021-12-27 11:57:26 +01:00
version = "1.1.0";
2021-05-08 11:23:37 +02:00
src = fetchFromGitHub {
owner = "timewarrior-synchronize";
repo = pname;
rev = "v${version}";
2021-12-27 11:57:26 +01:00
sha256 = "GaDcnPJBcDJ3AQaHzifDgdl0QT4GSbAOIqp4RrAcO3M=";
2021-05-08 11:23:37 +02:00
};
2021-12-27 11:57:26 +01:00
vendorSha256 = "iROqiRWkHG6N6kivUmgmu6sg14JDdG4f98BdR7CL1gs=";
2021-05-08 11:23:37 +02:00
meta = with lib; {
homepage = "https://github.com/timewarrior-synchronize/timew-sync-server";
description = "Server component of timewarrior synchronization application";
license = licenses.mit;
maintainers = [ maintainers.joachimschmidt557 ];
platforms = platforms.linux;
};
}