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

31 lines
927 B
Nix
Raw Normal View History

2018-01-28 03:04:14 +00:00
{ lib, stdenv, fetchurl, pkgconfig, libftdi, pciutils }:
2018-01-28 03:04:14 +00:00
let version = "1.0"; in
stdenv.mkDerivation rec {
name = "flashrom-${version}";
src = fetchurl {
url = "http://download.flashrom.org/releases/${name}.tar.bz2";
2016-04-12 23:33:25 +00:00
sha256 = "0i9wg1lyfg99bld7d00zqjm9f0lk6m0q3h3n9c195c9yysq5ccfb";
};
2018-04-25 02:45:58 +00:00
# Newer versions of libusb deprecate some API flashrom uses.
postPatch = ''
substituteInPlace Makefile \
--replace "-Werror" "-Werror -Wno-error=deprecated-declarations -Wno-error=unused-const-variable="
'';
2016-04-12 23:33:25 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libftdi pciutils ];
2014-11-11 20:53:16 +00:00
preConfigure = "export PREFIX=$out";
2018-01-28 03:04:14 +00:00
meta = with lib; {
homepage = http://www.flashrom.org;
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 ];
platforms = with platforms; linux;
};
}