1{ lib, buildGoModule, fetchFromGitHub }:
2
3buildGoModule rec {
4 pname = "duplicacy";
5 version = "3.1.0";
6
7 src = fetchFromGitHub {
8 owner = "gilbertchen";
9 repo = "duplicacy";
10 rev = "v${version}";
11 sha256 = "sha256-PYUfECxtUG2WuLmYLtE3Ugcr8GeQMQwQa4uFzcl1RoY=";
12 };
13
14 vendorSha256 = "sha256-90NWpMEUlPo5+G7DnqFrZyTlAYDAFfZrsctNTaWVjX4=";
15
16 doCheck = false;
17
18 meta = with lib; {
19 homepage = "https://duplicacy.com";
20 description = "A new generation cloud backup tool";
21 platforms = platforms.linux ++ platforms.darwin;
22 license = lib.licenses.unfree;
23 maintainers = with maintainers; [ ffinkdevs devusb ];
24 };
25}