2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, expat, ncurses, pciutils, numactl
|
2017-12-01 00:00:00 +00:00
|
|
|
, x11Support ? false, libX11 ? null, cairo ? null
|
2017-12-14 07:51:48 +00:00
|
|
|
}:
|
2009-11-05 18:46:46 +00:00
|
|
|
|
2017-12-01 00:00:00 +00:00
|
|
|
assert x11Support -> libX11 != null && cairo != null;
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
with lib;
|
2017-03-13 23:44:28 +00:00
|
|
|
|
2021-06-18 10:45:01 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "hwloc";
|
2022-03-26 22:19:19 +00:00
|
|
|
version = "2.7.1";
|
2009-11-05 18:46:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-06-18 10:45:01 +01:00
|
|
|
url = "https://www.open-mpi.org/software/hwloc/v${versions.majorMinor version}/downloads/hwloc-${version}.tar.bz2";
|
2022-03-26 22:19:19 +00:00
|
|
|
sha256 = "sha256-DU4dNsOnLF1hkBv9R3M39aTH4Kl12lcWUjfQDjXvUo0=";
|
2009-11-05 18:46:46 +00:00
|
|
|
};
|
|
|
|
|
2017-12-14 07:51:48 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
2018-10-09 12:19:21 +01:00
|
|
|
"--enable-netloc"
|
2017-12-14 07:51:48 +00:00
|
|
|
];
|
|
|
|
|
2011-12-06 14:04:01 +00:00
|
|
|
# XXX: libX11 is not directly needed, but needed as a propagated dep of Cairo.
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2012-01-17 16:34:10 +00:00
|
|
|
|
|
|
|
# Filter out `null' inputs. This allows users to `.override' the
|
|
|
|
# derivation and set optional dependencies to `null'.
|
2021-01-21 17:00:13 +00:00
|
|
|
buildInputs = lib.filter (x: x != null)
|
2012-05-29 17:37:31 +01:00
|
|
|
([ expat ncurses ]
|
2017-12-14 07:51:48 +00:00
|
|
|
++ (optionals x11Support [ cairo libX11 ])
|
2017-03-13 23:44:28 +00:00
|
|
|
++ (optionals stdenv.isLinux [ numactl ]));
|
2012-07-05 10:55:24 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs =
|
|
|
|
# Since `libpci' appears in `hwloc.pc', it must be propagated.
|
2017-03-13 23:44:28 +00:00
|
|
|
optional stdenv.isLinux pciutils;
|
2009-11-05 18:46:46 +00:00
|
|
|
|
2012-12-03 15:20:57 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-05-31 17:45:37 +01:00
|
|
|
postInstall =
|
2017-03-13 23:44:28 +00:00
|
|
|
optionalString (stdenv.isLinux && numactl != null)
|
2012-05-31 17:45:37 +01:00
|
|
|
'' if [ -d "${numactl}/lib64" ]
|
|
|
|
then
|
|
|
|
numalibdir="${numactl}/lib64"
|
|
|
|
else
|
|
|
|
numalibdir="${numactl}/lib"
|
|
|
|
test -d "$numalibdir"
|
|
|
|
fi
|
|
|
|
|
2017-12-14 07:51:48 +00:00
|
|
|
sed -i "$lib/lib/libhwloc.la" \
|
2012-06-01 14:06:35 +01:00
|
|
|
-e "s|-lnuma|-L$numalibdir -lnuma|g"
|
2012-05-31 17:45:37 +01:00
|
|
|
'';
|
|
|
|
|
2016-02-16 21:39:33 +00:00
|
|
|
# Checks disabled because they're impure (hardware dependent) and
|
|
|
|
# fail on some build machines.
|
|
|
|
doCheck = false;
|
2009-11-05 18:46:46 +00:00
|
|
|
|
2017-12-14 07:51:48 +00:00
|
|
|
outputs = [ "out" "lib" "dev" "doc" "man" ];
|
|
|
|
|
2017-03-13 23:44:28 +00:00
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Portable abstraction of hierarchical architectures for high-performance computing";
|
2009-11-05 18:46:46 +00:00
|
|
|
longDescription = ''
|
|
|
|
hwloc provides a portable abstraction (across OS,
|
|
|
|
versions, architectures, ...) of the hierarchical topology of
|
|
|
|
modern architectures, including NUMA memory nodes, sockets,
|
|
|
|
shared caches, cores and simultaneous multithreading. It also
|
|
|
|
gathers various attributes such as cache and memory
|
|
|
|
information. It primarily aims at helping high-performance
|
|
|
|
computing applications with gathering information about the
|
|
|
|
hardware so as to exploit it accordingly and efficiently.
|
|
|
|
|
|
|
|
hwloc may display the topology in multiple convenient
|
|
|
|
formats. It also offers a powerful programming interface to
|
|
|
|
gather information about the hardware, bind processes, and much
|
|
|
|
more.
|
|
|
|
'';
|
|
|
|
|
2019-07-10 20:52:51 +01:00
|
|
|
# https://www.open-mpi.org/projects/hwloc/license.php
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.bsd3;
|
2020-04-05 22:20:30 +01:00
|
|
|
homepage = "https://www.open-mpi.org/projects/hwloc/";
|
2018-10-09 12:19:56 +01:00
|
|
|
maintainers = with maintainers; [ fpletz markuskowa ];
|
2015-05-27 20:56:04 +01:00
|
|
|
platforms = platforms.all;
|
2009-11-05 18:46:46 +00:00
|
|
|
};
|
|
|
|
}
|