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
python3Packages.openusd: 24.08 -> 24.11 (#376119)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
cstruct
/
sexp.nix
blob
0b4b1e42f0e224b71509869fd32eeac97a44cb20
1
{
2
lib,
3
buildDunePackage,
4
ocaml,
5
alcotest,
6
cstruct,
7
sexplib,
8
}:
9
10
if lib.versionOlder (cstruct.version or "1") "3" then
11
cstruct
12
else
13
14
buildDunePackage rec {
15
pname = "cstruct-sexp";
16
inherit (cstruct) version src meta;
17
18
minimalOCamlVersion = "4.08";
19
duneVersion = "3";
20
21
doCheck = true;
22
checkInputs = [ alcotest ];
23
24
propagatedBuildInputs = [
25
cstruct
26
sexplib
27
];
28
}