2020-02-16 20:14:13 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, meson
|
|
|
|
, ninja
|
2021-01-17 03:51:22 +00:00
|
|
|
, pkg-config
|
2020-02-16 20:14:13 +00:00
|
|
|
, libftdi1
|
|
|
|
, libusb1
|
|
|
|
, pciutils
|
2021-06-08 23:27:09 +01:00
|
|
|
, installShellFiles
|
2020-02-16 20:14:13 +00:00
|
|
|
}:
|
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
|
|
|
};
|
|
|
|
|
2021-06-26 02:37:52 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace util/z60_flashrom.rules \
|
|
|
|
--replace "plugdev" "flashrom"
|
|
|
|
'';
|
|
|
|
|
2021-06-08 23:27:09 +01:00
|
|
|
# Meson build doesn't build and install manpage. Only Makefile can.
|
|
|
|
# Build manpage from source directory. Here we're inside the ./build subdirectory
|
|
|
|
postInstall = ''
|
|
|
|
make flashrom.8 -C ..
|
|
|
|
installManPage ../flashrom.8
|
2021-06-26 02:37:52 +01:00
|
|
|
install -Dm644 ../util/z60_flashrom.rules $out/etc/udev/rules.d/flashrom.rules
|
2021-06-08 23:27:09 +01:00
|
|
|
'';
|
|
|
|
|
2020-09-09 21:09:45 +01:00
|
|
|
mesonFlags = lib.optionals stdenv.isAarch64 [ "-Dpciutils=false" ];
|
2021-06-08 23:27:09 +01:00
|
|
|
nativeBuildInputs = [ meson pkg-config ninja installShellFiles ];
|
2020-02-16 20:14:13 +00:00
|
|
|
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;
|
2021-07-01 03:54:38 +01:00
|
|
|
maintainers = with maintainers; [ funfunctor fpletz felixsinger ];
|
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
|
|
|
};
|
|
|
|
}
|