librsync: split dev, man & lib/bin outputs

This commit is contained in:
Doron Behar
2026-01-26 16:48:55 +02:00
parent df256221f9
commit 60003853bc
+9
View File
@@ -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/";