2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchzip, autoreconfHook, pkgconfig, 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";
|
2020-11-03 02:18:15 +00:00
|
|
|
version = "20.09.00";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchzip {
|
|
|
|
url = "http://fwts.ubuntu.com/release/${pname}-V${version}.tar.gz";
|
2020-11-03 02:18:15 +00:00
|
|
|
sha256 = "1vzzlb7xdrk8rhi27jdw9baskild4dmk7g5d0hhfh6z3fx4lfhgk";
|
2020-04-24 23:36:52 +00:00
|
|
|
stripRoot = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig libtool ];
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|