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-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; {
|
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 ];
|
2020-02-16 20:14:13 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
# https://github.com/flashrom/flashrom/issues/125
|
2020-02-12 10:14:15 +00:00
|
|
|
badPlatforms = [ "aarch64-linux" ];
|
2014-08-28 22:27:28 +01:00
|
|
|
};
|
|
|
|
}
|