python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / cpuid / default.nix
bloba0c28bc92d9a004df275845b0a77b1a5f1666b24
1 { lib, fetchurl, buildDunePackage }:
3 buildDunePackage rec {
4   pname = "cpuid";
5   version = "0.1.2";
7   useDune2 = true;
9   minimumOCamlVersion = "4.03";
11   src = fetchurl {
12     url = "https://github.com/pqwy/cpuid/releases/download/v${version}/cpuid-v${version}.tbz";
13     sha256 = "08ng4mva6qblb5ipkrxbr0my7ndkc4qwcbswkqgbgir864s74m93";
14   };
16   meta = {
17     homepage = "https://github.com/pqwy/cpuid";
18     description = "Detect CPU features from OCaml";
19     license = lib.licenses.isc;
20     maintainers = [ lib.maintainers.vbgl ];
21   };