summary refs log tree commit diff
path: root/pkgs/os-specific/linux/fwts
diff options
context:
space:
mode:
authorTad Fisher <tadfisher@gmail.com>2018-02-11 23:14:59 -0800
committerTad Fisher <tadfisher@gmail.com>2018-03-04 12:22:20 -0800
commitf4bea835ae2eae37edc53166a2f66d60fc7936f0 (patch)
treefdd45c8681fcf43268e4fe299df7a888d1e4c895 /pkgs/os-specific/linux/fwts
parent73774ef8f9cd496162e53d8a4b1f06b382af21c9 (diff)
downloadnixpkgs-f4bea835ae2eae37edc53166a2f66d60fc7936f0.tar
nixpkgs-f4bea835ae2eae37edc53166a2f66d60fc7936f0.tar.gz
nixpkgs-f4bea835ae2eae37edc53166a2f66d60fc7936f0.tar.bz2
nixpkgs-f4bea835ae2eae37edc53166a2f66d60fc7936f0.tar.lz
nixpkgs-f4bea835ae2eae37edc53166a2f66d60fc7936f0.tar.xz
nixpkgs-f4bea835ae2eae37edc53166a2f66d60fc7936f0.tar.zst
nixpkgs-f4bea835ae2eae37edc53166a2f66d60fc7936f0.zip
fwts: init at 18.01.00
Diffstat (limited to 'pkgs/os-specific/linux/fwts')
-rw-r--r--pkgs/os-specific/linux/fwts/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/fwts/default.nix b/pkgs/os-specific/linux/fwts/default.nix
new file mode 100644
index 00000000000..4c393a0f326
--- /dev/null
+++ b/pkgs/os-specific/linux/fwts/default.nix
@@ -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 ];
+  };
+}