fwts: init at 18.01.00

This commit is contained in:
Tad Fisher 2018-02-11 23:14:59 -08:00
parent 73774ef8f9
commit f4bea835ae
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ stdenv, fetchzip, autoreconfHook, pkgconfig, glib, libtool, pcre
, json_c, flex, bison, dtc, pciutils, dmidecode, iasl }:
stdenv.mkDerivation rec {
name = "fwts-${version}";
version = "18.01.00";
src = fetchzip {
url = "http://fwts.ubuntu.com/release/fwts-V${version}.tar.gz";
sha256 = "043wkq4hz5pz79masppya67b8i5jw61p1j8dw17jwc8w6gp8csfb";
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 ];
};
}

View file

@ -12905,6 +12905,8 @@ with pkgs;
fwupdate = callPackage ../os-specific/linux/firmware/fwupdate { };
fwts = callPackage ../os-specific/linux/fwts { };
libossp_uuid = callPackage ../development/libraries/libossp-uuid { };
libuuid =