Merge staging-next into staging

This commit is contained in:
github-actions[bot]
2021-02-20 00:36:40 +00:00
committed by GitHub
93 changed files with 2835 additions and 1177 deletions
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
};
preBuild = "
makeFlagsArray=(prefix=$out E=echo RANLIB=ranlib INSTALL='install -c')
makeFlagsArray=(prefix=$out E=echo RANLIB=${stdenv.cc.targetPrefix}ranlib INSTALL='install -c')
";
# Work around a broken Makefile.
+4 -1
View File
@@ -1,4 +1,6 @@
{ lib, stdenv, fetchFromGitHub, pkg-config }:
{ lib, stdenv, fetchFromGitHub, pkg-config
, libuuid
}:
stdenv.mkDerivation rec {
pname = "nvme-cli";
@@ -12,6 +14,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libuuid ];
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];