Commit 60003853 authored by Doron Behar's avatar Doron Behar
Browse files

librsync: split dev, man & lib/bin outputs

parent df256221
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -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/";