2018-02-12 08:14:59 +01:00
|
|
|
{ stdenv, fetchzip, autoreconfHook, pkgconfig, glib, libtool, pcre
|
|
|
|
, json_c, flex, bison, dtc, pciutils, dmidecode, iasl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "fwts-${version}";
|
2018-03-14 17:22:51 +01:00
|
|
|
version = "18.02.00";
|
2018-02-12 08:14:59 +01:00
|
|
|
|
|
|
|
src = fetchzip {
|
|
|
|
url = "http://fwts.ubuntu.com/release/fwts-V${version}.tar.gz";
|
2018-03-14 17:22:51 +01:00
|
|
|
sha256 = "0z8yvicp4qk1xi8xmbrngnc294fjdnb9qn5d9lnyls4i6mmvpr2d";
|
2018-02-12 08:14:59 +01:00
|
|
|
stripRoot = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig libtool ];
|
|
|
|
buildInputs = [ glib pcre json_c flex bison dtc pciutils dmidecode iasl ];
|
|
|
|
|
|
|
|
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"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "https://wiki.ubuntu.com/FirmwareTestSuite";
|
|
|
|
description = "Firmware Test Suite";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ tadfisher ];
|
|
|
|
};
|
|
|
|
}
|