ocamlPackages.cpuid: init at 0.1.0

cpuid allows detection of CPU features from OCaml.

Homepage: https://github.com/pqwy/cpuid
This commit is contained in:
Vincent Laporte 2017-03-13 20:17:29 +00:00
parent 90f2b24fd7
commit 369230cc76
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg, ocb-stubblr }:
stdenv.mkDerivation {
name = "ocaml${ocaml.version}-cpuid-0.1.0";
src = fetchurl {
url = http://github.com/pqwy/cpuid/releases/download/v0.1.0/cpuid-0.1.0.tbz;
sha256 = "08k2558a3dnxn8msgpz8c93sfn0y027ganfdi2yvql0fp1ixv97p";
};
unpackCmd = "tar xjf $src";
buildInputs = [ ocaml findlib ocamlbuild opam topkg ocb-stubblr ];
inherit (topkg) buildPhase installPhase;
meta = {
homepage = https://github.com/pqwy/cpuid;
description = "Detect CPU features from OCaml";
license = stdenv.lib.licenses.isc;
maintainers = [ stdenv.lib.maintainers.vbgl ];
inherit (ocaml.meta) platforms;
};
}

View file

@ -138,6 +138,8 @@ let
cppo = callPackage ../development/tools/ocaml/cppo { };
cpuid = callPackage ../development/ocaml-modules/cpuid { };
cryptokit = callPackage ../development/ocaml-modules/cryptokit { };
cstruct = callPackage ../development/ocaml-modules/cstruct {