From c6d0acbda74712c171f46e1064dd69df64d27df7 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Mon, 20 Apr 2015 14:52:51 -0700 Subject: [PATCH] numactl: 1.0.2 -> 2.0.10 --- pkgs/os-specific/linux/numactl/default.nix | 24 ++++++++-------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/pkgs/os-specific/linux/numactl/default.nix b/pkgs/os-specific/linux/numactl/default.nix index b92408058657..d895a9600106 100644 --- a/pkgs/os-specific/linux/numactl/default.nix +++ b/pkgs/os-specific/linux/numactl/default.nix @@ -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 ]; }; }