nixpkgs/pkgs/development/ocaml-modules/cpuid/default.nix

21 lines
518 B
Nix
Raw Normal View History

2019-11-23 07:55:56 +00:00
{ lib, fetchurl, buildDunePackage }:
2019-11-23 07:55:56 +00:00
buildDunePackage rec {
pname = "cpuid";
version = "0.1.2";
minimumOCamlVersion = "4.03";
src = fetchurl {
2019-11-23 07:55:56 +00:00
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";
2019-11-23 07:55:56 +00:00
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}