mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
chipsec: Kernel driver only works on x86_64-linux
See: https://github.com/chipsec/chipsec/issues/461 Noticed that when ofBorg failed to build the kernel driver on ARM.
This commit is contained in:
parent
18a71fbdd4
commit
1636f11f12
|
@ -7,7 +7,7 @@ python27Packages.buildPythonApplication rec {
|
|||
src = fetchFromGitHub {
|
||||
owner = "chipsec";
|
||||
repo = "chipsec";
|
||||
rev = if (version == "1.3.7") then version else "v${version}";
|
||||
rev = version;
|
||||
sha256 = "00hwhi5f24y429zazhm77l1pp31q7fmx7ks3sfm6d16v89zbcp9a";
|
||||
};
|
||||
|
||||
|
@ -35,8 +35,6 @@ python27Packages.buildPythonApplication rec {
|
|||
license = licenses.gpl2;
|
||||
homepage = https://github.com/chipsec/chipsec;
|
||||
maintainers = with maintainers; [ johnazoidberg ];
|
||||
# This package description is currently only able to build the Linux driver.
|
||||
# But the other functionality should work on all platforms.
|
||||
platforms = platforms.all;
|
||||
platforms = if withDriver then [ "x86_64-linux" ] else platforms.all;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -684,8 +684,10 @@ in
|
|||
|
||||
chezmoi = callPackage ../tools/misc/chezmoi { };
|
||||
|
||||
# Without kernel driver, should build and work on non-linux as well
|
||||
chipsec = callPackage ../tools/security/chipsec { };
|
||||
chipsec = callPackage ../tools/security/chipsec {
|
||||
kernel = null;
|
||||
withDriver = false;
|
||||
};
|
||||
|
||||
clair = callPackage ../tools/admin/clair { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue