1
0
Fork 0
nix-configuration/packages/duplicacy-web.nix

28 lines
633 B
Nix
Raw Normal View History

2024-02-29 09:53:34 -05:00
{ pkgs, lib }:
pkgs.stdenv.mkDerivation rec {
pname = "duplicacy-web";
version = "1.8.0";
2024-02-29 09:53:34 -05:00
src = builtins.fetchurl {
2024-05-09 12:25:08 -04:00
url = "https://acrosync.com/${pname}/duplicacy_web_linux_x64_${version}";
sha256 = "f0b4d4c16781a6ccb137f161df9de86574e7a55660c582682c63062e26476c4a";
};
2024-02-29 09:53:34 -05:00
doCheck = false;
2024-02-29 09:53:34 -05:00
dontUnpack = true;
2024-02-29 09:53:34 -05:00
installPhase = ''
install -D $src $out/duplicacy-web
chmod a+x $out/duplicacy-web
'';
2024-02-29 09:53:34 -05:00
meta = with lib; {
homepage = "https://duplicacy.com";
description = "A new generation cloud backup tool";
platforms = platforms.linux;
license = licenses.unfreeRedistributable;
};
2024-02-29 09:53:34 -05:00
}