diff --git a/pkgs/test/rust-sysroot/default.nix b/pkgs/test/rust-sysroot/default.nix index c6e9ecb89d9..10b37278af9 100644 --- a/pkgs/test/rust-sysroot/default.nix +++ b/pkgs/test/rust-sysroot/default.nix @@ -1,4 +1,4 @@ -{ rustPlatform, fetchFromGitHub, writeText }: +{ lib, rustPlatform, fetchFromGitHub, writeText }: rustPlatform.buildRustPackage rec { name = "blog_os-sysroot-test"; @@ -38,4 +38,9 @@ rustPlatform.buildRustPackage rec { # Tests don't work for `no_std`. See https://os.phil-opp.com/testing/ doCheck = false; + + meta = with lib; { + description = "Test for using custom sysroots with buildRustPackage."; + maintainers = with maintainers; [ aaronjanse ]; + }; }