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:
parent
90f2b24fd7
commit
369230cc76
24
pkgs/development/ocaml-modules/cpuid/default.nix
Normal file
24
pkgs/development/ocaml-modules/cpuid/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user