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/";