depot/third_party/nixpkgs/pkgs/development/ocaml-modules/cpuid/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

20 lines
518 B
Nix

{ lib, fetchurl, buildDunePackage }:
buildDunePackage rec {
pname = "cpuid";
version = "0.1.2";
minimumOCamlVersion = "4.03";
src = fetchurl {
url = "https://github.com/pqwy/cpuid/releases/download/v${version}/cpuid-v${version}.tbz";
sha256 = "08ng4mva6qblb5ipkrxbr0my7ndkc4qwcbswkqgbgir864s74m93";
};
meta = {
homepage = "https://github.com/pqwy/cpuid";
description = "Detect CPU features from OCaml";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}