ocamlPackages.chrome-trace: init at ${dune.version}

This commit is contained in:
Guillaume Girol 2022-07-17 12:00:00 +00:00 committed by Vincent Laporte
parent 4bb03f92e3
commit caa3cefeb5
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ lib, buildDunePackage, dune_3 }:
buildDunePackage rec {
pname = "chrome-trace";
inherit (dune_3) src version;
duneVersion = "3";
dontAddPrefix = true;
preBuild = ''
rm -r vendor/csexp
'';
meta = with lib; {
description = "Chrome trace event generation library";
inherit (dune_3.meta) homepage;
license = licenses.mit;
};
}

View file

@ -181,6 +181,8 @@ let
checkseum = callPackage ../development/ocaml-modules/checkseum { };
chrome-trace = callPackage ../development/ocaml-modules/chrome-trace { };
cil = callPackage ../development/ocaml-modules/cil { };
cmdliner_1_0 = callPackage ../development/ocaml-modules/cmdliner/1_0.nix { };