nsncd: add passthru.(updateScript|tests)

This commit is contained in:
Picnoir
2024-10-04 15:24:57 +02:00
parent 27f99cd7c3
commit 1672d58a3a
+7
View File
@@ -3,6 +3,8 @@
stdenv,
fetchFromGitHub,
rustPlatform,
nix-update-script,
nixosTests,
}:
rustPlatform.buildRustPackage {
@@ -40,4 +42,9 @@ rustPlatform.buildRustPackage {
# never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
broken = stdenv.hostPlatform.isDarwin;
};
passthru = {
tests.nscd = nixosTests.nscd;
updateScript = nix-update-script { };
};
}