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

This commit is contained in:
Guillaume Girol
2022-07-18 11:24:37 +02:00
committed by Vincent Laporte
parent 4bb03f92e3
commit caa3cefeb5
2 changed files with 22 additions and 0 deletions
@@ -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;
};
}
+2
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 { };