summary refs log tree commit diff
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-09-02 18:15:05 -0500
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2019-09-06 19:32:46 +0200
commit289579b09e49d00e6c976ef943fb736979aaf7da (patch)
tree875d4300e3bc41a95e1a889cb3434d5e27f0700d
parent841c667e9d70baf33a01f58639b156f1eaa285aa (diff)
downloadnixpkgs-289579b09e49d00e6c976ef943fb736979aaf7da.tar
nixpkgs-289579b09e49d00e6c976ef943fb736979aaf7da.tar.gz
nixpkgs-289579b09e49d00e6c976ef943fb736979aaf7da.tar.bz2
nixpkgs-289579b09e49d00e6c976ef943fb736979aaf7da.tar.lz
nixpkgs-289579b09e49d00e6c976ef943fb736979aaf7da.tar.xz
nixpkgs-289579b09e49d00e6c976ef943fb736979aaf7da.tar.zst
nixpkgs-289579b09e49d00e6c976ef943fb736979aaf7da.zip
numactl: 2.0.12 -> 2.0.13
https://github.com/numactl/numactl/releases/tag/v2.0.13
-rw-r--r--pkgs/os-specific/linux/numactl/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/numactl/default.nix b/pkgs/os-specific/linux/numactl/default.nix
index 4417ffb569b..f2188ee37cb 100644
--- a/pkgs/os-specific/linux/numactl/default.nix
+++ b/pkgs/os-specific/linux/numactl/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "numactl";
-  version = "2.0.12";
+  version = "2.0.13";
 
   src = fetchFromGitHub {
-    owner = "numactl";
-    repo = "numactl";
+    owner = pname;
+    repo = pname;
     rev = "v${version}";
-    sha256 = "0crhpxwakp0gvd7wwpbkfd3brnrdf89lkbf03axnbrs0b6kaygg2";
+    sha256 = "08xj0n27qh0ly8hjallnx774gicz15nfq0yyxz8zhgy6pq8l33vv";
   };
 
   nativeBuildInputs = [ autoreconfHook ];