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