57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
31 lines
928 B
Nix
31 lines
928 B
Nix
{ lib, stdenv, fetchurl, pkgconfig, libftdi, pciutils }:
|
|
|
|
let version = "1.0"; in
|
|
stdenv.mkDerivation rec {
|
|
name = "flashrom-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.flashrom.org/releases/${name}.tar.bz2";
|
|
sha256 = "0i9wg1lyfg99bld7d00zqjm9f0lk6m0q3h3n9c195c9yysq5ccfb";
|
|
};
|
|
|
|
# Newer versions of libusb deprecate some API flashrom uses.
|
|
postPatch = ''
|
|
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; {
|
|
homepage = http://www.flashrom.org;
|
|
description = "Utility for reading, writing, erasing and verifying flash ROM chips";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ funfunctor fpletz ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|