1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

hwloc 1.0.

svn path=/nixpkgs/trunk/; revision=21902
This commit is contained in:
Ludovic Courtès 2010-05-19 21:30:37 +00:00
parent ee7ad85926
commit fc763b15eb
2 changed files with 5 additions and 11 deletions

View file

@ -1,19 +1,14 @@
{ stdenv, fetchurl, pkgconfig, cairo, expat, ncurses
, autoconf, automake, libtool }:
{ stdenv, fetchurl, pkgconfig, cairo, expat, ncurses }:
stdenv.mkDerivation rec {
name = "hwloc-1.0rc1";
name = "hwloc-1.0";
src = fetchurl {
url = "http://www.open-mpi.org/software/hwloc/v1.0/downloads/${name}.tar.bz2";
sha256 = "0mgjlyfwp1pbl2312l9diwjw53yb9hb62slmvcb3xvhqdwvj0d7s";
sha256 = "1s64w026idxrkf0y56q4cybapz7yldn1xycnfh1d5bj7v7ncds21";
};
patches = [ ./ncurses.patch ];
preConfigure = "autoreconf -vfi";
buildInputs = [ autoconf automake libtool pkgconfig cairo expat ncurses ];
buildInputs = [ pkgconfig cairo expat ncurses ];
doCheck = true;

View file

@ -4193,8 +4193,7 @@ let
};
hwloc = import ../development/libraries/hwloc {
inherit fetchurl stdenv pkgconfig cairo expat ncurses
autoconf automake libtool;
inherit fetchurl stdenv pkgconfig cairo expat ncurses;
};
hydraAntLogger = import ../development/libraries/java/hydra-ant-logger {