atuin: add passthru for NixOS module tests

This commit is contained in:
Morgan Helton 2022-12-15 21:07:26 -06:00
parent a935888d45
commit 67b35bfcf0

View File

@ -6,6 +6,7 @@
, libiconv
, Security
, SystemConfiguration
, nixosTests
}:
rustPlatform.buildRustPackage rec {
@ -32,6 +33,10 @@ rustPlatform.buildRustPackage rec {
--zsh <($out/bin/atuin gen-completions -s zsh)
'';
passthru.tests = {
inherit (nixosTests) atuin;
};
meta = with lib; {
description = "Replacement for a shell history which records additional commands context with optional encrypted synchronization between machines";
homepage = "https://github.com/ellie/atuin";