depot/pkgs/by-name/ue/uefisettings/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

36 lines
1.1 KiB
Nix

{ fetchFromGitHub
, lib
, rustPlatform
}:
rustPlatform.buildRustPackage {
name = "uefisettings";
version = "0-unstable-2024-03-26";
src = fetchFromGitHub {
owner = "linuxboot";
repo = "uefisettings";
rev = "f90aed759b9c2217bea336e37ab5282616ece390";
hash = "sha256-Cik8uVdzhMmgXfx23axkUJBg8zd5afMgYvluN0BJsdo=";
};
cargoHash = "sha256-FCQ/1E6SZyVOOAlpqyaDWEZx0y0Wk3Caosvr48VamAA=";
checkFlags = [
# Expects filesystem access to /proc and rootfs
"--skip=hii::efivarfs::tests::test_get_current_mount_flags_for_proc"
"--skip=hii::efivarfs::tests::test_get_current_mount_flags_for_root"
# Expects FHS
"--skip=ilorest::blobstore::Transport"
"--skip=ilorest::chif::IloRestChif"
];
meta = with lib; {
description = "CLI tool to read/get/extract and write/change/modify BIOS/UEFI settings";
homepage = "https://github.com/linuxboot/uefisettings";
license = with licenses; [ bsd3 ];
mainProgram = "uefisettings";
maintainers = with maintainers; [ surfaceflinger ];
platforms = platforms.linux;
};
}