2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
2008-04-18 15:38:27 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "numactl";
|
2019-09-03 00:15:05 +01:00
|
|
|
version = "2.0.13";
|
2015-04-20 22:52:51 +01:00
|
|
|
|
2018-01-30 23:47:50 +00:00
|
|
|
src = fetchFromGitHub {
|
2019-09-03 00:15:05 +01:00
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
2018-01-30 23:47:50 +00:00
|
|
|
rev = "v${version}";
|
2019-09-03 00:15:05 +01:00
|
|
|
sha256 = "08xj0n27qh0ly8hjallnx774gicz15nfq0yyxz8zhgy6pq8l33vv";
|
2008-04-18 15:38:27 +01:00
|
|
|
};
|
|
|
|
|
2015-04-20 22:52:51 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2008-04-18 15:46:29 +01:00
|
|
|
|
2018-08-08 22:27:16 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs test
|
|
|
|
'';
|
|
|
|
|
|
|
|
# You probably shouldn't ever run these! They will reconfigure Linux
|
|
|
|
# NUMA settings, which on my build machine makes the rest of package
|
|
|
|
# building ~5% slower until reboot. Ugh!
|
|
|
|
doCheck = false; # never ever!
|
|
|
|
|
2015-04-20 22:52:51 +01:00
|
|
|
meta = with stdenv.lib; {
|
2008-04-18 15:38:27 +01:00
|
|
|
description = "Library and tools for non-uniform memory access (NUMA) machines";
|
2018-08-22 12:04:47 +01:00
|
|
|
homepage = https://github.com/numactl/numactl;
|
|
|
|
license = with licenses; [ gpl2 lgpl21 ]; # libnuma is lgpl21
|
2017-11-22 17:38:16 +00:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
|
2008-04-18 15:38:27 +01:00
|
|
|
};
|
|
|
|
}
|