openrsync: init at unstable-2022-05-08

+31
+29
pkgs/applications/networking/sync/openrsync/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + pname = "openrsync"; 8 + version = "unstable-2022-05-08"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "kristapsdz"; 12 + repo = "openrsync"; 13 + rev = "f50d0f8204ea18306a0c29c6ae850292ea826995"; 14 + hash = "sha256-4tygoCQGIM0wqLfdWp55/oOPhD3lPUuTd9/LXQAASXU="; 15 + }; 16 + 17 + # Uses oconfigure 18 + prefixKey = "PREFIX="; 19 + 20 + meta = with lib; { 21 + homepage = "https://www.openrsync.org/"; 22 + description = "BSD-licensed implementation of rsync"; 23 + license = licenses.isc; 24 + maintainers = with maintainers; [ fgaz ]; 25 + # https://github.com/kristapsdz/openrsync#portability 26 + # https://github.com/kristapsdz/oconfigure#readme 27 + platforms = platforms.unix; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 31191 31191 vm = callPackage ../applications/audio/open-music-kontrollers/vm.nix { }; 31192 31192 }; 31193 31193 31194 + openrsync = darwin.apple_sdk_11_0.callPackage ../applications/networking/sync/openrsync { }; 31195 + 31194 31196 openscad = libsForQt5.callPackage ../applications/graphics/openscad {}; 31195 31197 31196 31198 open-stage-control = callPackage ../applications/audio/open-stage-control { };