2018-01-28 03:04:14 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig, libftdi, pciutils }:
|
2014-08-28 22:27:28 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "flashrom";
|
2019-07-01 14:41:41 +01:00
|
|
|
version = "1.1";
|
2014-08-28 22:27:28 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-02 07:04:37 +01:00
|
|
|
url = "https://download.flashrom.org/releases/flashrom-v${version}.tar.bz2";
|
2019-07-01 14:41:41 +01:00
|
|
|
sha256 = "06afq680n9p34hi3vrkn12vd1pfyq2062db9qqbi4hi21k3skbdf";
|
2014-08-28 22:27:28 +01:00
|
|
|
};
|
|
|
|
|
2018-04-25 03:45:58 +01:00
|
|
|
# Newer versions of libusb deprecate some API flashrom uses.
|
2019-04-02 07:04:37 +01:00
|
|
|
#postPatch = ''
|
|
|
|
# substituteInPlace Makefile \
|
|
|
|
# --replace "-Werror" "-Werror -Wno-error=deprecated-declarations -Wno-error=unused-const-variable="
|
|
|
|
#'';
|
2018-04-25 03:45:58 +01:00
|
|
|
|
2016-04-13 00:33:25 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libftdi pciutils ];
|
2014-08-28 22:27:28 +01:00
|
|
|
|
2014-11-11 20:53:16 +00:00
|
|
|
preConfigure = "export PREFIX=$out";
|
2014-08-28 22:27:28 +01:00
|
|
|
|
2018-01-28 03:04:14 +00:00
|
|
|
meta = with lib; {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.flashrom.org;
|
2014-08-28 22:27:28 +01:00
|
|
|
description = "Utility for reading, writing, erasing and verifying flash ROM chips";
|
2018-01-28 03:04:14 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ funfunctor fpletz ];
|
|
|
|
platforms = with platforms; linux;
|
2014-08-28 22:27:28 +01:00
|
|
|
};
|
|
|
|
}
|