Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

piqi: missed propagated dependency

authored by Matthew Maurer and committed by Vincent Laporte 4e47e850 3c7b0d37

+9 -4
+2 -2
pkgs/development/ocaml-modules/piqi-ocaml/default.nix
··· 1 - {stdenv, fetchurl, ocaml, findlib, piqi, ulex, easy-format, xmlm, base64, camlp4}: 1 + { stdenv, fetchurl, ocaml, findlib, piqi, ulex, easy-format, xmlm, camlp4 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "0.7.5"; ··· 9 9 sha256 = "0ngz6y8i98i5v2ma8nk6mc83pdsmf2z0ks7m3xi6clfg3zqbddrv"; 10 10 }; 11 11 12 - buildInputs = [ocaml findlib piqi base64 camlp4]; 12 + buildInputs = [ ocaml findlib piqi camlp4 ]; 13 13 14 14 createFindlibDestdir = true; 15 15
+7 -2
pkgs/development/ocaml-modules/piqi/default.nix
··· 9 9 sha256 = "1whqr2bb3gds2zmrzqnv8vqka9928w4lx6mi6g244kmbwb2h8d8l"; 10 10 }; 11 11 12 - buildInputs = [ocaml findlib camlp4 which ocaml_optcomp base64]; 13 - propagatedBuildInputs = [ulex xmlm easy-format]; 12 + buildInputs = [ocaml findlib camlp4 which ocaml_optcomp]; 13 + propagatedBuildInputs = [ulex xmlm easy-format base64]; 14 14 15 15 patches = [ ./no-ocamlpath-override.patch ]; 16 16 17 17 createFindlibDestdir = true; 18 + 19 + buildPhase = '' 20 + make 21 + make -C piqilib piqilib.cma 22 + ''; 18 23 19 24 installPhase = '' 20 25 make install;