repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
evcc: 0.131.4 -> 0.131.5
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
eio
/
posix.nix
blob
fa63c1ea713bf79b2547a50264a7f952e3b5b5b1
1
{ buildDunePackage
2
, lib
3
, stdenv
4
, dune-configurator
5
, eio
6
, fmt
7
, logs
8
, iomux
9
}:
10
11
buildDunePackage {
12
pname = "eio_posix";
13
inherit (eio) meta src patches version;
14
15
minimalOCamlVersion = "5.0";
16
17
dontStrip = true;
18
19
env = lib.optionalAttrs stdenv.hostPlatform.isDarwin {
20
NIX_CFLAGS_COMPILE = "-Wno-implicit-function-declaration";
21
};
22
23
buildInputs = [
24
dune-configurator
25
];
26
27
propagatedBuildInputs = [
28
eio
29
fmt
30
logs
31
iomux
32
];
33
}