add meta to rust-sysroot test

This commit is contained in:
Aaron Janse 2020-10-17 00:58:09 -07:00
parent d884b2d877
commit 0ac33bf3f8

View file

@ -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 ];
};
}