Merge pull request #198471 from ifurther/nvme

nvme-cli: 2.1 -> 2.2.1 and libnvme: 1.1 -> 1.2
This commit is contained in:
ajs124 2022-11-03 19:16:39 +01:00 committed by GitHub
commit 5e4062b901
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 8 deletions

View File

@ -1,7 +1,6 @@
{ fetchFromGitHub
, json_c
, lib
, libuuid
, meson
, ninja
, openssl
@ -14,7 +13,7 @@
stdenv.mkDerivation rec {
pname = "libnvme";
version = "1.1";
version = "1.2";
outputs = [ "out" "man" ];
@ -22,7 +21,7 @@ stdenv.mkDerivation rec {
owner = "linux-nvme";
repo = "libnvme";
rev = "v${version}";
sha256 = "EPAPWY6/Bh8I1eLslKJAofLn0IAizmGn00Q5PJPtdRw=";
sha256 = "sha256-U9Fj3OcBe32C0PKhI05eF/6jikHAvdyvXH16IY0rWxI=";
};
postPatch = ''
@ -40,7 +39,6 @@ stdenv.mkDerivation rec {
buildInputs = [
json_c
libuuid
openssl
python3
systemd

View File

@ -1,7 +1,6 @@
{ lib, stdenv, fetchFromGitHub, pkg-config
, meson
, ninja
, libuuid
, libnvme
, json_c
, zlib
@ -10,13 +9,13 @@
stdenv.mkDerivation rec {
pname = "nvme-cli";
version = "2.1.2";
version = "2.2.1";
src = fetchFromGitHub {
owner = "linux-nvme";
repo = "nvme-cli";
rev = "v${version}";
hash = "sha256-ZjgysgWMmBlN+aalI5u2vQ58XrtEbJlDPCqUN6avv08=";
hash = "sha256-okYtGiKUPNO31ntD9j5iAgdcnS5OQ/g1QAY+svhga4c=";
};
mesonFlags = [
@ -30,7 +29,6 @@ stdenv.mkDerivation rec {
python3.pkgs.nose2
];
buildInputs = [
libuuid
libnvme
json_c
zlib