Merge pull request #79906 from r-ryantm/auto-update/flashrom

flashrom: 1.1 -> 1.2
This commit is contained in:
Florian Klink 2020-02-12 22:09:44 +01:00 committed by GitHub
commit af7b000928
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "flashrom";
version = "1.1";
version = "1.2";
src = fetchurl {
url = "https://download.flashrom.org/releases/flashrom-v${version}.tar.bz2";
sha256 = "06afq680n9p34hi3vrkn12vd1pfyq2062db9qqbi4hi21k3skbdf";
sha256 = "0ax4kqnh7kd3z120ypgp73qy1knz47l6qxsqzrfkd97mh5cdky71";
};
# Newer versions of libusb deprecate some API flashrom uses.
@ -26,5 +26,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2;
maintainers = with maintainers; [ funfunctor fpletz ];
platforms = with platforms; linux;
badPlatforms = [ "aarch64-linux" ];
};
}