2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
2008-04-18 15:38:27 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "numactl";
|
2020-09-26 07:00:55 +01:00
|
|
|
version = "2.0.14";
|
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}";
|
2020-09-26 07:00:55 +01:00
|
|
|
sha256 = "0hahpdp5xqy9cbg251bdxqkml341djn2h856g435h4ngz63sr9fs";
|
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
|
|
|
|
'';
|
|
|
|
|
2021-02-20 01:15:00 +00:00
|
|
|
LDFLAGS = lib.optionalString stdenv.hostPlatform.isRiscV "-latomic";
|
|
|
|
|
2018-08-08 22:27:16 +01:00
|
|
|
# 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!
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2008-04-18 15:38:27 +01:00
|
|
|
description = "Library and tools for non-uniform memory access (NUMA) machines";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/numactl/numactl";
|
2018-08-22 12:04:47 +01:00
|
|
|
license = with licenses; [ gpl2 lgpl21 ]; # libnuma is lgpl21
|
2021-02-20 01:15:00 +00:00
|
|
|
platforms = platforms.linux;
|
2008-04-18 15:38:27 +01:00
|
|
|
};
|
|
|
|
}
|