biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / backup / duplicacy / default.nix
blob3d818f8d9006570200fad7a1a1edca3b498a909b
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "duplicacy";
5   version = "3.2.3";
7   src = fetchFromGitHub {
8     owner = "gilbertchen";
9     repo = "duplicacy";
10     rev = "v${version}";
11     hash = "sha256-7LflTRBB4JG84QM46wvSJrP4o3CHV4gnR24RJgDSlDg=";
12   };
14   vendorHash = "sha256-4M/V4vP9XwHBkZ6UwsAxZ81YAzP4inuNC5yI+5ygQsA=";
16   doCheck = false;
18   meta = with lib; {
19     homepage = "https://duplicacy.com";
20     description = "New generation cloud backup tool";
21     platforms = platforms.linux ++ platforms.darwin;
22     license = lib.licenses.unfree;
23     maintainers = with maintainers; [ ffinkdevs devusb ];
24   };