python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-profile / default.nix
blobef856e02127301abc44f5c5e0e25c438abebc322
1 { lib, fetchurl, buildDunePackage
2 , ppx_cstruct, stdlib-shims
3 , cstruct, lwt
4 }:
6 buildDunePackage rec {
7   pname = "mirage-profile";
8   version = "0.9.1";
10   useDune2 = true;
12   src = fetchurl {
13     url = "https://github.com/mirage/mirage-profile/releases/download/v${version}/mirage-profile-v${version}.tbz";
14     sha256 = "0lh3591ad4v7nxpd410b75idmgdq668mqdilvkg4avrwqw1wzdib";
15   };
17   buildInputs = [ ppx_cstruct ];
18   propagatedBuildInputs = [ cstruct lwt stdlib-shims ];
20   meta = with lib; {
21     description = "Collect runtime profiling information in CTF format";
22     homepage = "https://github.com/mirage/mirage-profile";
23     license = licenses.bsd2;
24     maintainers = with maintainers; [ vbgl ];
25   };