2020-02-16 20:14:13 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pkgconfig
|
|
|
|
, libftdi1
|
|
|
|
, libusb1
|
|
|
|
, pciutils
|
|
|
|
}:
|
2014-08-28 22:27:28 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "flashrom";
|
2020-02-12 08:37:44 +00:00
|
|
|
version = "1.2";
|
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";
|
2020-02-12 08:37:44 +00:00
|
|
|
sha256 = "0ax4kqnh7kd3z120ypgp73qy1knz47l6qxsqzrfkd97mh5cdky71";
|
2014-08-28 22:27:28 +01:00
|
|
|
};
|
|
|
|
|
2020-09-09 21:09:45 +01:00
|
|
|
mesonFlags = lib.optionals stdenv.isAarch64 [ "-Dpciutils=false" ];
|
2020-02-16 20:14:13 +00:00
|
|
|
nativeBuildInputs = [ meson pkgconfig ninja ];
|
|
|
|
buildInputs = [ libftdi1 libusb1 pciutils ];
|
2014-08-28 22:27:28 +01:00
|
|
|
|
2018-01-28 03:04:14 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +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 ];
|
2020-02-16 20:14:13 +00:00
|
|
|
platforms = platforms.all;
|
2020-11-24 09:02:14 +00:00
|
|
|
broken = stdenv.isDarwin; # requires DirectHW
|
2014-08-28 22:27:28 +01:00
|
|
|
};
|
|
|
|
}
|