Unverified Commit 78387afd authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

librsync: split dev, lib & man outputs (#482318)

parents ffccca4e 60003853
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -28,7 +28,14 @@ stdenv.mkDerivation rec {
    popt
  ];

  dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
  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";