mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
Merge pull request #157567 from dtzWill/update/numatop-2.2-fix-platforms
numatop: 2.1 -> 2.2, fix build, string ops, meta.platforms
This commit is contained in:
commit
ddc93d61c0
|
@ -1,17 +1,32 @@
|
|||
{ lib, stdenv, fetchurl, pkg-config, numactl, ncurses, check }:
|
||||
{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkg-config, numactl, ncurses, check }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "numatop";
|
||||
version = "2.1";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/intel/${pname}/releases/download/v${version}/${pname}-v${version}.tar.xz";
|
||||
sha256 = "1s7psq1xyswj0lpx10zg5lnppav2xy9safkfx3rssrs9c2fp5d76";
|
||||
version = "2.2";
|
||||
src = fetchFromGitHub {
|
||||
owner = "intel";
|
||||
repo = "numatop";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-GJvTwqgx34ZW10eIJj/xiKe3ZkAfs7GlJImz8jrnjfI=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
buildInputs = [ numactl ncurses ];
|
||||
checkInputs = [ check ];
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
url = "https://github.com/intel/numatop/pull/54.patch";
|
||||
sha256 = "sha256-TbMLv7TT9T8wE4uJ1a/AroyPPwrwL0eX5IBLsh9GTTM=";
|
||||
name = "fix-string-operations.patch";
|
||||
})
|
||||
(fetchpatch {
|
||||
url = "https://github.com/intel/numatop/pull/64.patch";
|
||||
sha256 = "sha256-IevbSFJRTS5iQ5apHOVXzF67f3LJaW6j7DySFmVuyiM=";
|
||||
name = "fix-format-strings-mvwprintw.patch";
|
||||
})
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
|
@ -20,8 +35,8 @@ stdenv.mkDerivation rec {
|
|||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ dtzWill ];
|
||||
platforms = [
|
||||
{ kernel.name = "linux"; cpu.family = "x86"; }
|
||||
{ kernel.name = "linux"; cpu.family = "power"; }
|
||||
"i686-linux" "x86_64-linux"
|
||||
"powerpc64-linux" "powerpc64le-linux"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue