about summary refs log tree commit diff
path: root/pkgs/applications/networking/sync
diff options
context:
space:
mode:
authorFrancesco Gazzetta <fgaz@fgaz.me>2022-12-29 11:35:45 +0000
committerGitHub <noreply@github.com>2022-12-29 11:35:45 +0000
commit904f07f5950a31bae7990c5d6ba94f0d2c148004 (patch)
tree0063d875a7ef1a3972b33b98e9be6341c7f56f37 /pkgs/applications/networking/sync
parent6873c69adab7a43c4dd3c734ee7cf80133020bbb (diff)
parentc86691332715d861353e5a5cd651b0a8f0a6a0d7 (diff)
Merge pull request #206395 from fgaz/openrsync/init
openrsync: init at unstable-2022-05-08
Diffstat (limited to 'pkgs/applications/networking/sync')
-rw-r--r--pkgs/applications/networking/sync/openrsync/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/applications/networking/sync/openrsync/default.nix b/pkgs/applications/networking/sync/openrsync/default.nix
new file mode 100644
index 0000000000000..0398ccd960945
--- /dev/null
+++ b/pkgs/applications/networking/sync/openrsync/default.nix
@@ -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;
+  };
+}