nixpkgs/pkgs/os-specific/linux/numactl/default.nix

21 lines
626 B
Nix
Raw Normal View History

2015-04-20 21:52:51 +00:00
{ stdenv, fetchurl, autoreconfHook }:
stdenv.mkDerivation rec {
2015-04-20 21:52:51 +00:00
name = "numactl-2.0.10";
src = fetchurl {
url = "ftp://oss.sgi.com/www/projects/libnuma/download/${name}.tar.gz";
2015-04-20 21:52:51 +00:00
sha256 = "0qfv2ks6d3gm0mw5sj4cbhsd7cbsb7qm58xvchl2wfzifkzcinnv";
};
2015-04-20 21:52:51 +00:00
nativeBuildInputs = [ autoreconfHook ];
2015-04-20 21:52:51 +00:00
meta = with stdenv.lib; {
description = "Library and tools for non-uniform memory access (NUMA) machines";
homepage = http://oss.sgi.com/projects/libnuma/;
2015-04-20 21:52:51 +00:00
license = licenses.gpl2;
2017-11-22 17:38:16 +00:00
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
2015-04-20 21:52:51 +00:00
maintainers = with maintainers; [ wkennington ];
};
}