1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/os-specific/linux/fwts/default.nix

33 lines
1.1 KiB
Nix
Raw Normal View History

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