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

29 lines
955 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, fetchpatch, autoreconfHook }:
stdenv.mkDerivation rec {
name = "numactl-${version}";
2018-08-22 12:04:04 +01:00
version = "2.0.12";
2015-04-20 22:52:51 +01:00
src = fetchFromGitHub {
owner = "numactl";
repo = "numactl";
rev = "v${version}";
2018-08-22 12:04:04 +01:00
sha256 = "0crhpxwakp0gvd7wwpbkfd3brnrdf89lkbf03axnbrs0b6kaygg2";
};
2015-04-20 22:52:51 +01:00
nativeBuildInputs = [ autoreconfHook ];
2018-08-22 12:04:04 +01:00
patches = stdenv.lib.optional stdenv.hostPlatform.isMusl (fetchpatch {
url = https://git.alpinelinux.org/cgit/aports/plain/testing/numactl/musl.patch?id=0592b128c71c3e70d493bc7a13caed0d7fae91dd;
sha256 = "080b0sygmg7104qbbh1amh3b322yyiajwi2d3d0vayffgva0720v";
});
2015-04-20 22:52:51 +01: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 22:52:51 +01:00
license = licenses.gpl2;
2017-11-22 17:38:16 +00:00
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
2015-04-20 22:52:51 +01:00
maintainers = with maintainers; [ wkennington ];
};
}