ocamlPackages.mirage-profile: init at 0.9.1
This commit is contained in:
parent
878bfaa6bf
commit
49bdf0dace
26
pkgs/development/ocaml-modules/mirage-profile/default.nix
Normal file
26
pkgs/development/ocaml-modules/mirage-profile/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ lib, fetchurl, buildDunePackage
|
||||||
|
, ppx_cstruct
|
||||||
|
, cstruct, lwt
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "mirage-profile";
|
||||||
|
version = "0.9.1";
|
||||||
|
|
||||||
|
useDune2 = true;
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/mirage/mirage-profile/releases/download/v${version}/mirage-profile-v${version}.tbz";
|
||||||
|
sha256 = "0lh3591ad4v7nxpd410b75idmgdq668mqdilvkg4avrwqw1wzdib";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ppx_cstruct ];
|
||||||
|
propagatedBuildInputs = [ cstruct lwt ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Collect runtime profiling information in CTF format";
|
||||||
|
homepage = "https://github.com/mirage/mirage-profile";
|
||||||
|
license = lib.licenses.bsd2;
|
||||||
|
maintainers = [ lib.maintainers.vbgl ];
|
||||||
|
};
|
||||||
|
}
|
@ -569,6 +569,8 @@ let
|
|||||||
|
|
||||||
mirage-net = callPackage ../development/ocaml-modules/mirage-net { };
|
mirage-net = callPackage ../development/ocaml-modules/mirage-net { };
|
||||||
|
|
||||||
|
mirage-profile = callPackage ../development/ocaml-modules/mirage-profile { };
|
||||||
|
|
||||||
mirage-protocols = callPackage ../development/ocaml-modules/mirage-protocols { };
|
mirage-protocols = callPackage ../development/ocaml-modules/mirage-protocols { };
|
||||||
|
|
||||||
mirage-random = callPackage ../development/ocaml-modules/mirage-random { };
|
mirage-random = callPackage ../development/ocaml-modules/mirage-random { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user