nixpkgs/pkgs/tools/misc/flashrom/default.nix

31 lines
930 B
Nix
Raw Normal View History

2018-01-28 06:04:14 +03:00
{ lib, stdenv, fetchurl, pkgconfig, libftdi, pciutils }:
stdenv.mkDerivation rec {
pname = "flashrom";
2020-02-12 11:37:44 +03:00
version = "1.2";
src = fetchurl {
2019-04-02 09:04:37 +03:00
url = "https://download.flashrom.org/releases/flashrom-v${version}.tar.bz2";
2020-02-12 11:37:44 +03:00
sha256 = "0ax4kqnh7kd3z120ypgp73qy1knz47l6qxsqzrfkd97mh5cdky71";
};
2018-04-25 05:45:58 +03:00
# Newer versions of libusb deprecate some API flashrom uses.
2019-04-02 09:04:37 +03:00
#postPatch = ''
# substituteInPlace Makefile \
# --replace "-Werror" "-Werror -Wno-error=deprecated-declarations -Wno-error=unused-const-variable="
#'';
2018-04-25 05:45:58 +03:00
2016-04-13 02:33:25 +03:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libftdi pciutils ];
2014-11-11 23:53:16 +03:00
preConfigure = "export PREFIX=$out";
2018-01-28 06:04:14 +03:00
meta = with lib; {
homepage = http://www.flashrom.org;
description = "Utility for reading, writing, erasing and verifying flash ROM chips";
2018-01-28 06:04:14 +03:00
license = licenses.gpl2;
maintainers = with maintainers; [ funfunctor fpletz ];
platforms = with platforms; linux;
};
}