2018-02-12 07:14:59 +00:00
|
|
|
{ stdenv, fetchzip, autoreconfHook, pkgconfig, glib, libtool, pcre
|
2018-11-17 22:42:09 +00:00
|
|
|
, json_c, flex, bison, dtc, pciutils, dmidecode, iasl, libbsd }:
|
2018-02-12 07:14:59 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "fwts";
|
2019-08-29 19:21:56 +00:00
|
|
|
version = "19.08.00";
|
2018-02-12 07:14:59 +00:00
|
|
|
|
|
|
|
src = fetchzip {
|
2019-08-29 19:21:56 +00:00
|
|
|
url = "http://fwts.ubuntu.com/release/${pname}-V${version}.tar.gz";
|
|
|
|
sha256 = "14v4vxvfsl008xalsmlhl9wh89xlrfffh3pky9m90flaizdzwyp4";
|
2018-02-12 07:14:59 +00:00
|
|
|
stripRoot = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig libtool ];
|
2018-11-17 22:42:09 +00:00
|
|
|
buildInputs = [ glib pcre json_c flex bison dtc pciutils dmidecode iasl libbsd ];
|
2018-02-12 07:14:59 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
'';
|
|
|
|
|
2018-12-19 19:37:57 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-02-12 07:14:59 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "https://wiki.ubuntu.com/FirmwareTestSuite";
|
|
|
|
description = "Firmware Test Suite";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ tadfisher ];
|
|
|
|
};
|
|
|
|
}
|