b2a78de0c0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/fwts/versions
33 lines
1.2 KiB
Nix
33 lines
1.2 KiB
Nix
{ stdenv, fetchzip, autoreconfHook, pkgconfig, glib, libtool, pcre
|
|
, json_c, flex, bison, dtc, pciutils, dmidecode, iasl, libbsd }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "fwts-${version}";
|
|
version = "19.06.00";
|
|
|
|
src = fetchzip {
|
|
url = "http://fwts.ubuntu.com/release/fwts-V${version}.tar.gz";
|
|
sha256 = "1aza6j323a908vlz3vkn0hda0jm34njg81aak1g4pqvmzhrg47ls";
|
|
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;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://wiki.ubuntu.com/FirmwareTestSuite";
|
|
description = "Firmware Test Suite";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ tadfisher ];
|
|
};
|
|
}
|