evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ue / uefisettings / package.nix
blob3315a5da78882813578d881843259fa6ffb11dbc
1 { fetchFromGitHub
2 , lib
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage {
7   name = "uefisettings";
8   version = "0-unstable-2024-03-26";
10   src = fetchFromGitHub {
11     owner = "linuxboot";
12     repo = "uefisettings";
13     rev = "f90aed759b9c2217bea336e37ab5282616ece390";
14     hash = "sha256-Cik8uVdzhMmgXfx23axkUJBg8zd5afMgYvluN0BJsdo=";
15   };
17   cargoHash = "sha256-FCQ/1E6SZyVOOAlpqyaDWEZx0y0Wk3Caosvr48VamAA=";
19   checkFlags = [
20     # Expects filesystem access to /proc and rootfs
21     "--skip=hii::efivarfs::tests::test_get_current_mount_flags_for_proc"
22     "--skip=hii::efivarfs::tests::test_get_current_mount_flags_for_root"
23     # Expects FHS
24     "--skip=ilorest::blobstore::Transport"
25     "--skip=ilorest::chif::IloRestChif"
26   ];
28   meta = with lib; {
29     description = "CLI tool to read/get/extract and write/change/modify BIOS/UEFI settings";
30     homepage = "https://github.com/linuxboot/uefisettings";
31     license = with licenses; [ bsd3 ];
32     mainProgram = "uefisettings";
33     maintainers = with maintainers; [ surfaceflinger ];
34     platforms = platforms.linux;
35   };