nixos/stratis: passthru tests to stratis-cli and stratisd

Nick Cao 7398c337 4abf0ee7

Changed files
+6
pkgs
tools
filesystems
stratis-cli
stratisd
+3
pkgs/tools/filesystems/stratis-cli/default.nix
···
{ lib
, python3Packages
, fetchFromGitHub
+
, nixosTests
}:
python3Packages.buildPythonApplication rec {
···
dbus-python-client-gen
packaging
];
+
+
passthru.tests = nixosTests.stratis;
meta = with lib; {
description = "CLI for the Stratis project";
+3
pkgs/tools/filesystems/stratisd/default.nix
···
, tpm2-tools
, coreutils
, clevisSupport ? false
+
, nixosTests
}:
stdenv.mkDerivation rec {
···
rm -r "$out/lib/dracut"
rm -r "$out/lib/systemd/system-generators"
'';
+
+
passthru.tests = nixosTests.stratis;
meta = with lib; {
description = "Easy to use local storage management for Linux";