stratisd: 3.4.4 -> 3.5.0

Diff: https://github.com/stratis-storage/stratisd/compare/v3.4.4...v3.5.0
This commit is contained in:
Nick Cao 2023-01-25 08:18:39 +08:00
parent 5b0130945a
commit bedb24510b
No known key found for this signature in database

View file

@ -5,6 +5,7 @@
, pkg-config , pkg-config
, asciidoc , asciidoc
, ncurses , ncurses
, glibc
, dbus , dbus
, cryptsetup , cryptsetup
, util-linux , util-linux
@ -24,18 +25,18 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "stratisd"; pname = "stratisd";
version = "3.4.4"; version = "3.5.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "stratis-storage"; owner = "stratis-storage";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-6VrbouYNB2iOndnDBfww8gT4eFgfP+HWcfep+N1nErI="; hash = "sha256-1x6zVWFr4WNpYGVz/UGlP+lycVF2cbWJoiAmiXWzGT8=";
}; };
cargoDeps = rustPlatform.fetchCargoTarball { cargoDeps = rustPlatform.fetchCargoTarball {
inherit src; inherit src;
hash = "sha256-C3nkHQt+w0OYbExDfEpFE0Et6ILJqMNRPXCEWiURf3A="; hash = "sha256-emsmdQY2od8XVjNY/rt0BbNsVy2XKtLpe8ydZGRil+Q=";
}; };
postPatch = '' postPatch = ''
@ -61,6 +62,8 @@ stdenv.mkDerivation rec {
]; ];
buildInputs = [ buildInputs = [
glibc
glibc.static
dbus dbus
cryptsetup cryptsetup
util-linux util-linux
@ -81,7 +84,7 @@ stdenv.mkDerivation rec {
]); ]);
makeFlags = [ "PREFIX=${placeholder "out"}" "INSTALL=install" ]; makeFlags = [ "PREFIX=${placeholder "out"}" "INSTALL=install" ];
buildFlags = [ "build" "build-min" "docs/stratisd.8" ]; buildFlags = [ "build-all" ];
doCheck = true; doCheck = true;
checkTarget = "test"; checkTarget = "test";