c9baba9212
(My OCD kicked in today...) Remove repeated package names, capitalize first word, remove trailing periods and move overlong descriptions to longDescription. I also simplified some descriptions as well, when they were particularly long or technical, often based on Arch Linux' package descriptions. I've tried to stay away from generated expressions (and I think I succeeded). Some specifics worth mentioning: * cron, has "Vixie Cron" in its description. The "Vixie" part is not mentioned anywhere else. I kept it in a parenthesis at the end of the description. * ctags description started with "Exuberant Ctags ...", and the "exuberant" part is not mentioned elsewhere. Kept it in a parenthesis at the end of description. * nix has the description "The Nix Deployment System". Since that doesn't really say much what it is/does (especially after removing the package name!), I changed that to "Powerful package manager that makes package management reliable and reproducible" (borrowed from nixos.org). * Tons of "GNU Foo, Foo is a [the important bits]" descriptions is changed to just [the important bits]. If the package name doesn't contain GNU I don't think it's needed to say it in the description either.
74 lines
2.5 KiB
Nix
74 lines
2.5 KiB
Nix
{ stdenv, fetchurl, pkgconfig, cairo, expat, ncurses, libX11
|
|
, pciutils, numactl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "hwloc-1.6";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.open-mpi.org/software/hwloc/v1.6/downloads/${name}.tar.bz2";
|
|
sha256 = "0y561bryiqp1f5af5lm432dcw93xwp1jw55si7wa6skxnd6ch25w";
|
|
};
|
|
|
|
# XXX: libX11 is not directly needed, but needed as a propagated dep of Cairo.
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
# Filter out `null' inputs. This allows users to `.override' the
|
|
# derivation and set optional dependencies to `null'.
|
|
buildInputs = stdenv.lib.filter (x: x != null)
|
|
([ expat ncurses ]
|
|
++ (stdenv.lib.optionals (!stdenv.isCygwin) [ cairo libX11 ])
|
|
++ (stdenv.lib.optionals stdenv.isLinux [ numactl ]));
|
|
|
|
propagatedBuildInputs =
|
|
# Since `libpci' appears in `hwloc.pc', it must be propagated.
|
|
stdenv.lib.optional stdenv.isLinux pciutils;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postInstall =
|
|
stdenv.lib.optionalString (stdenv.isLinux && numactl != null)
|
|
'' if [ -d "${numactl}/lib64" ]
|
|
then
|
|
numalibdir="${numactl}/lib64"
|
|
else
|
|
numalibdir="${numactl}/lib"
|
|
test -d "$numalibdir"
|
|
fi
|
|
|
|
sed -i "$out/lib/libhwloc.la" \
|
|
-e "s|-lnuma|-L$numalibdir -lnuma|g"
|
|
'';
|
|
|
|
# XXX: A test hangs on Cygwin, see
|
|
# <http://hydra.bordeaux.inria.fr/build/51474/nixlog/1/raw>.
|
|
doCheck = !stdenv.isCygwin;
|
|
|
|
meta = {
|
|
description = "Portable abstraction of hierarchical architectures for high-performance computing";
|
|
|
|
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.
|
|
'';
|
|
|
|
# http://www.open-mpi.org/projects/hwloc/license.php
|
|
license = "revised-BSD";
|
|
|
|
homepage = http://www.open-mpi.org/projects/hwloc/;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|