2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchzip, autoreconfHook, pkg-config, glib, libtool, pcre
|
2020-04-24 23:36:52 +00:00
|
|
|
, json_c, flex, bison, dtc, pciutils, dmidecode, iasl, libbsd }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "fwts";
|
2021-02-05 17:12:51 +00:00
|
|
|
version = "20.11.00";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchzip {
|
|
|
|
url = "http://fwts.ubuntu.com/release/${pname}-V${version}.tar.gz";
|
2021-02-05 17:12:51 +00:00
|
|
|
sha256 = "0s8iz6c9qhyndcsjscs3qail2mzfywpbiys1x232igm5kl089vvr";
|
2020-04-24 23:36:52 +00:00
|
|
|
stripRoot = false;
|
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config libtool ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ glib pcre json_c flex bison dtc pciutils dmidecode iasl libbsd ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/lib/include/fwts_binpaths.h --replace "/usr/bin/lspci" "${pciutils}/bin/lspci"
|
|
|
|
substituteInPlace src/lib/include/fwts_binpaths.h --replace "/usr/sbin/dmidecode" "${dmidecode}/bin/dmidecode"
|
|
|
|
substituteInPlace src/lib/include/fwts_binpaths.h --replace "/usr/bin/iasl" "${iasl}/bin/iasl"
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://wiki.ubuntu.com/FirmwareTestSuite";
|
|
|
|
description = "Firmware Test Suite";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ tadfisher ];
|
|
|
|
};
|
|
|
|
}
|