2020-02-16 21:14:13 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, meson
|
|
|
|
, ninja
|
2021-01-17 04:51:22 +01:00
|
|
|
, pkg-config
|
2020-02-16 21:14:13 +01:00
|
|
|
, libftdi1
|
|
|
|
, libusb1
|
|
|
|
, pciutils
|
|
|
|
}:
|
2014-08-28 23:27:28 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "flashrom";
|
2020-02-12 09:37:44 +01:00
|
|
|
version = "1.2";
|
2014-08-28 23:27:28 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-02 08:04:37 +02:00
|
|
|
url = "https://download.flashrom.org/releases/flashrom-v${version}.tar.bz2";
|
2020-02-12 09:37:44 +01:00
|
|
|
sha256 = "0ax4kqnh7kd3z120ypgp73qy1knz47l6qxsqzrfkd97mh5cdky71";
|
2014-08-28 23:27:28 +02:00
|
|
|
};
|
|
|
|
|
2020-09-09 22:09:45 +02:00
|
|
|
mesonFlags = lib.optionals stdenv.isAarch64 [ "-Dpciutils=false" ];
|
2021-01-17 04:51:22 +01:00
|
|
|
nativeBuildInputs = [ meson pkg-config ninja ];
|
2020-02-16 21:14:13 +01:00
|
|
|
buildInputs = [ libftdi1 libusb1 pciutils ];
|
2014-08-28 23:27:28 +02:00
|
|
|
|
2018-01-28 04:04:14 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.flashrom.org";
|
2014-08-28 23:27:28 +02:00
|
|
|
description = "Utility for reading, writing, erasing and verifying flash ROM chips";
|
2018-01-28 04:04:14 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ funfunctor fpletz ];
|
2020-02-16 21:14:13 +01:00
|
|
|
platforms = platforms.all;
|
2020-11-24 10:02:14 +01:00
|
|
|
broken = stdenv.isDarwin; # requires DirectHW
|
2014-08-28 23:27:28 +02:00
|
|
|
};
|
|
|
|
}
|