Merge pull request #80293 from emilazy/flashrom-1.2
flashrom: switch to Meson build and update deps
This commit is contained in:
commit
76e1d5cf3b
1 changed files with 14 additions and 12 deletions
|
@ -1,4 +1,13 @@
|
||||||
{ lib, stdenv, fetchurl, pkgconfig, libftdi, pciutils }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkgconfig
|
||||||
|
, libftdi1
|
||||||
|
, libusb1
|
||||||
|
, pciutils
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "flashrom";
|
pname = "flashrom";
|
||||||
|
@ -9,23 +18,16 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "0ax4kqnh7kd3z120ypgp73qy1knz47l6qxsqzrfkd97mh5cdky71";
|
sha256 = "0ax4kqnh7kd3z120ypgp73qy1knz47l6qxsqzrfkd97mh5cdky71";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Newer versions of libusb deprecate some API flashrom uses.
|
nativeBuildInputs = [ meson pkgconfig ninja ];
|
||||||
#postPatch = ''
|
buildInputs = [ libftdi1 libusb1 pciutils ];
|
||||||
# substituteInPlace Makefile \
|
|
||||||
# --replace "-Werror" "-Werror -Wno-error=deprecated-declarations -Wno-error=unused-const-variable="
|
|
||||||
#'';
|
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
|
||||||
buildInputs = [ libftdi pciutils ];
|
|
||||||
|
|
||||||
preConfigure = "export PREFIX=$out";
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = http://www.flashrom.org;
|
homepage = http://www.flashrom.org;
|
||||||
description = "Utility for reading, writing, erasing and verifying flash ROM chips";
|
description = "Utility for reading, writing, erasing and verifying flash ROM chips";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = with maintainers; [ funfunctor fpletz ];
|
maintainers = with maintainers; [ funfunctor fpletz ];
|
||||||
platforms = with platforms; linux;
|
platforms = platforms.all;
|
||||||
|
# https://github.com/flashrom/flashrom/issues/125
|
||||||
badPlatforms = [ "aarch64-linux" ];
|
badPlatforms = [ "aarch64-linux" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue