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