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
microfetch: 0.4.4 -> 0.4.6 (#377799)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
cstruct
/
unix.nix
blob
8f3e139563d90a33f26d8f71b2684ba0011d391f
1
{
2
lib,
3
buildDunePackage,
4
cstruct,
5
}:
6
7
if lib.versionOlder (cstruct.version or "1") "3" then
8
cstruct
9
else
10
11
buildDunePackage {
12
pname = "cstruct-unix";
13
inherit (cstruct) version src meta;
14
15
minimalOCamlVersion = "4.08";
16
duneVersion = "3";
17
18
propagatedBuildInputs = [ cstruct ];
19
}