mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
camlp5: propagate findlib deps pcre2 and fmt
camlp5's META requires pcre2 and fmt, but they were only buildInputs, so findlib consumers of camlp5 could not resolve them. Move them to propagatedBuildInputs.
This commit is contained in:
parent
005f5a6700
commit
74a82ccd8e
1 changed files with 6 additions and 2 deletions
|
|
@ -8,6 +8,7 @@
|
|||
makeWrapper,
|
||||
rresult,
|
||||
bos,
|
||||
fmt,
|
||||
pcre2,
|
||||
re,
|
||||
camlp-streams,
|
||||
|
|
@ -52,12 +53,15 @@ stdenv.mkDerivation (
|
|||
|
||||
buildInputs = lib.optionals recent [
|
||||
bos
|
||||
pcre2
|
||||
re
|
||||
rresult
|
||||
];
|
||||
|
||||
propagatedBuildInputs = lib.optional recent camlp-streams;
|
||||
propagatedBuildInputs = lib.optionals recent [
|
||||
camlp-streams
|
||||
pcre2
|
||||
fmt
|
||||
];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue