Unverified Commit 6c037fca authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

judy: add dev & man outputs (#482252)

parents 9bb3f392 59639083
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -29,6 +29,12 @@ stdenv.mkDerivation rec {
  # Let's wait for the upstream fix similar to https://sourceforge.net/p/judy/patches/4/
  enableParallelBuilding = false;

  outputs = [
    "out"
    "man"
    "dev"
  ];

  meta = {
    homepage = "https://judy.sourceforge.net/";
    license = lib.licenses.lgpl21Plus;
+6 −1
Original line number Diff line number Diff line
@@ -19,7 +19,12 @@ buildPecl {
    hash = "sha256-gq+txAU2Fw+Zm1aIu0lwPUHRqtccNcHFpp0fm3f7BnQ=";
  };

  configureFlags = [ "--with-judy-dir=${judy}" ];
  buildInputs = [
    judy
  ];
  configureFlags = [
    "--with-judy-dir=${lib.getDev judy}"
  ];

  doCheck = true;