ocamlPackages.cpu: setcore 1.0.1 -> cpu 2.0.0

This commit is contained in:
Ben Darwin 2019-12-26 17:30:49 -05:00
parent 0afebfeb5a
commit f1958523e3
2 changed files with 6 additions and 6 deletions

View File

@ -1,14 +1,14 @@
{ stdenv, buildDunePackage, fetchFromGitHub, autoconf }: { stdenv, buildDunePackage, fetchFromGitHub, autoconf }:
buildDunePackage rec { buildDunePackage rec {
pname = "setcore"; pname = "cpu";
version = "1.0.1"; version = "2.0.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "UnixJunkie"; owner = "UnixJunkie";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "1yn660gxk2ccp7lbdq9v6pjz1c3pm08s9dl9k9l5492ld6bx8fxc"; sha256 = "1vir6gh1bhvxgj2fcn69c38yhw3jgk7dyikmw789m5ld2csnyjiv";
}; };
preConfigure = '' preConfigure = ''
@ -22,7 +22,7 @@ buildDunePackage rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
inherit (src.meta) homepage; inherit (src.meta) homepage;
description = "Generalized map/reduce for multicore computing"; description = "Core pinning library";
maintainers = [ maintainers.bcdarwin ]; maintainers = [ maintainers.bcdarwin ];
license = licenses.lgpl2; license = licenses.lgpl2;
}; };

View File

@ -191,6 +191,8 @@ let
cppo = callPackage ../development/tools/ocaml/cppo { }; cppo = callPackage ../development/tools/ocaml/cppo { };
cpu = callPackage ../development/ocaml-modules/cpu { };
cpuid = callPackage ../development/ocaml-modules/cpuid { }; cpuid = callPackage ../development/ocaml-modules/cpuid { };
crunch = callPackage ../development/tools/ocaml/crunch { }; crunch = callPackage ../development/tools/ocaml/crunch { };
@ -831,8 +833,6 @@ let
sedlex = callPackage ../development/ocaml-modules/sedlex { }; sedlex = callPackage ../development/ocaml-modules/sedlex { };
setcore = callPackage ../development/ocaml-modules/setcore { };
sodium = callPackage ../development/ocaml-modules/sodium { }; sodium = callPackage ../development/ocaml-modules/sodium { };
spelll = callPackage ../development/ocaml-modules/spelll { }; spelll = callPackage ../development/ocaml-modules/spelll { };