From 6bbf2eda49bbda2235de9809f9da54d7f8b9b91e Mon Sep 17 00:00:00 2001 From: Daniel Beckwith Date: Thu, 24 Mar 2022 21:45:09 -0400 Subject: [PATCH] Fix lib ref --- pkgs/development/tools/rust/bootimage/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/rust/bootimage/default.nix b/pkgs/development/tools/rust/bootimage/default.nix index 1014b5f03e08..9da7aeaa8cc3 100644 --- a/pkgs/development/tools/rust/bootimage/default.nix +++ b/pkgs/development/tools/rust/bootimage/default.nix @@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec { cargoSha256 = "03jximwqgjq7359c5mxbyfja2d04y57h34f87aby8jy0lz99jy2x"; - meta = with stdenv.lib; { + meta = with lib; { description = "Creates a bootable disk image from a Rust OS kernel."; homepage = "https://github.com/rust-osdev/bootimage"; license = with licenses; [ asl20 mit ];