Merge pull request #212512 from NickCao/stratis

stratisd: 3.4.4 -> 3.5.0

authored by

Nick Cao and committed by
GitHub
39b5d060 fbb71f14

+10 -7
+1 -1
nixos/tests/stratis/simple.nix
··· 8 8 9 9 nodes.machine = { pkgs, ... }: { 10 10 services.stratis.enable = true; 11 - virtualisation.emptyDiskImages = [ 1024 1024 1024 1024 ]; 11 + virtualisation.emptyDiskImages = [ 2048 1024 1024 1024 ]; 12 12 }; 13 13 14 14 testScript = ''
+2 -2
pkgs/tools/filesystems/stratis-cli/default.nix
··· 6 6 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "stratis-cli"; 9 - version = "3.4.1"; 9 + version = "3.5.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "stratis-storage"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - hash = "sha256-S0daUi0rhelip2pwcAP3WGey8BbeMa/7AgSrFfuB+cM="; 15 + hash = "sha256-IfvI8DVjm68SewHtQbhGGU1oku4eZnF7cRyeVPB/Ctk="; 16 16 }; 17 17 18 18 propagatedBuildInputs = with python3Packages; [
+7 -4
pkgs/tools/filesystems/stratisd/default.nix
··· 5 5 , pkg-config 6 6 , asciidoc 7 7 , ncurses 8 + , glibc 8 9 , dbus 9 10 , cryptsetup 10 11 , util-linux ··· 24 25 25 26 stdenv.mkDerivation rec { 26 27 pname = "stratisd"; 27 - version = "3.4.4"; 28 + version = "3.5.0"; 28 29 29 30 src = fetchFromGitHub { 30 31 owner = "stratis-storage"; 31 32 repo = pname; 32 33 rev = "v${version}"; 33 - hash = "sha256-6VrbouYNB2iOndnDBfww8gT4eFgfP+HWcfep+N1nErI="; 34 + hash = "sha256-1x6zVWFr4WNpYGVz/UGlP+lycVF2cbWJoiAmiXWzGT8="; 34 35 }; 35 36 36 37 cargoDeps = rustPlatform.fetchCargoTarball { 37 38 inherit src; 38 - hash = "sha256-C3nkHQt+w0OYbExDfEpFE0Et6ILJqMNRPXCEWiURf3A="; 39 + hash = "sha256-emsmdQY2od8XVjNY/rt0BbNsVy2XKtLpe8ydZGRil+Q="; 39 40 }; 40 41 41 42 postPatch = '' ··· 61 62 ]; 62 63 63 64 buildInputs = [ 65 + glibc 66 + glibc.static 64 67 dbus 65 68 cryptsetup 66 69 util-linux ··· 81 84 ]); 82 85 83 86 makeFlags = [ "PREFIX=${placeholder "out"}" "INSTALL=install" ]; 84 - buildFlags = [ "build" "build-min" "docs/stratisd.8" ]; 87 + buildFlags = [ "build-all" ]; 85 88 86 89 doCheck = true; 87 90 checkTarget = "test";