Merge pull request #45461 from markuskowa/numactl-up

numactl: 2.0.11 -> 2.0.12

authored by xeji and committed by GitHub 9b136dd5 1471e865

+5 -10
+5 -10
pkgs/os-specific/linux/numactl/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "numactl-${version}"; 5 - version = "2.0.11"; 5 + version = "2.0.12"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "numactl"; 9 9 repo = "numactl"; 10 10 rev = "v${version}"; 11 - sha256 = "0bcffqawwbyrnza8np0whii25mfd0dria35zal9v3l55xcrya3j9"; 11 + sha256 = "0crhpxwakp0gvd7wwpbkfd3brnrdf89lkbf03axnbrs0b6kaygg2"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoreconfHook ]; 15 15 16 - patches = [ 17 - (fetchpatch { 18 - url = https://raw.githubusercontent.com/gentoo/gentoo/b64d15e731e3d6a7671f0ec6c34a20203cf2609d/sys-process/numactl/files/numactl-2.0.11-sysmacros.patch; 19 - sha256 = "05277kv3x12n2xlh3fgnmxclxfc384mkwb0v9pd91046khj6h843"; 20 - }) 21 - ] ++ stdenv.lib.optional stdenv.hostPlatform.isMusl (fetchpatch { 16 + patches = stdenv.lib.optional stdenv.hostPlatform.isMusl (fetchpatch { 22 17 url = https://git.alpinelinux.org/cgit/aports/plain/testing/numactl/musl.patch?id=0592b128c71c3e70d493bc7a13caed0d7fae91dd; 23 18 sha256 = "080b0sygmg7104qbbh1amh3b322yyiajwi2d3d0vayffgva0720v"; 24 19 }); ··· 34 29 35 30 meta = with stdenv.lib; { 36 31 description = "Library and tools for non-uniform memory access (NUMA) machines"; 37 - homepage = http://oss.sgi.com/projects/libnuma/; 38 - license = licenses.gpl2; 32 + homepage = https://github.com/numactl/numactl; 33 + license = with licenses; [ gpl2 lgpl21 ]; # libnuma is lgpl21 39 34 platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ]; 40 35 maintainers = with maintainers; [ wkennington ]; 41 36 };