numactl: 1.0.2 -> 2.0.10
This commit is contained in:
parent
b090b10d68
commit
c6d0acbda7
1 changed files with 9 additions and 15 deletions
|
@ -1,26 +1,20 @@
|
|||
{ fetchurl, stdenv }:
|
||||
{ stdenv, fetchurl, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "numactl-1.0.2";
|
||||
name = "numactl-2.0.10";
|
||||
|
||||
src = fetchurl {
|
||||
url = "ftp://oss.sgi.com/www/projects/libnuma/download/${name}.tar.gz";
|
||||
sha256 = "0hbrrh7a8cradj1xdl3wvyp9afx1hzsk90g2lkwd5pn6bniai31j";
|
||||
sha256 = "0qfv2ks6d3gm0mw5sj4cbhsd7cbsb7qm58xvchl2wfzifkzcinnv";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
sed -i "Makefile" -es"|^ *prefix *:=.*$|prefix := $out|g"
|
||||
'';
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
preInstall = ''
|
||||
# The `install' rule expects this directory to be available.
|
||||
mkdir -p "$out/share/man/man5"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Library and tools for non-uniform memory access (NUMA) machines";
|
||||
license = [ "LGPLv2.1" # library
|
||||
"GPLv2" # command-line tools
|
||||
];
|
||||
homepage = http://oss.sgi.com/projects/libnuma/;
|
||||
license = licenses.gpl2;
|
||||
platforms = with platforms; linux;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue