openrsync: init at unstable-2022-05-08

This commit is contained in:
Francesco Gazzetta 2022-12-16 14:01:02 +01:00
parent 4ad0f129ae
commit c866913327
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib
, stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "openrsync";
version = "unstable-2022-05-08";
src = fetchFromGitHub {
owner = "kristapsdz";
repo = "openrsync";
rev = "f50d0f8204ea18306a0c29c6ae850292ea826995";
hash = "sha256-4tygoCQGIM0wqLfdWp55/oOPhD3lPUuTd9/LXQAASXU=";
};
# Uses oconfigure
prefixKey = "PREFIX=";
meta = with lib; {
homepage = "https://www.openrsync.org/";
description = "BSD-licensed implementation of rsync";
license = licenses.isc;
maintainers = with maintainers; [ fgaz ];
# https://github.com/kristapsdz/openrsync#portability
# https://github.com/kristapsdz/oconfigure#readme
platforms = platforms.unix;
};
}

View File

@ -31191,6 +31191,8 @@ with pkgs;
vm = callPackage ../applications/audio/open-music-kontrollers/vm.nix { };
};
openrsync = darwin.apple_sdk_11_0.callPackage ../applications/networking/sync/openrsync { };
openscad = libsForQt5.callPackage ../applications/graphics/openscad {};
open-stage-control = callPackage ../applications/audio/open-stage-control { };