From 60003853bc72e351fda866e012f7529b98216c91 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Wed, 21 Jan 2026 17:31:41 +0200 Subject: [PATCH] librsync: split dev, man & lib/bin outputs --- pkgs/by-name/li/librsync/package.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/by-name/li/librsync/package.nix b/pkgs/by-name/li/librsync/package.nix index c66f3e0a0b3f..45926e867897 100644 --- a/pkgs/by-name/li/librsync/package.nix +++ b/pkgs/by-name/li/librsync/package.nix @@ -28,6 +28,15 @@ stdenv.mkDerivation rec { popt ]; + outputs = [ + "out" + "dev" + "man" + ] + # Avoid cycle dependence between out and lib outputs on Darwin, by using bin + # instead of lib + ++ (if stdenv.hostPlatform.isDarwin then [ "bin" ] else [ "lib" ]); + meta = { description = "Implementation of the rsync remote-delta algorithm"; homepage = "https://librsync.sourceforge.net/";