33 lines
1.1 KiB
Nix
Raw Normal View History

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