nixpkgs/pkgs/tools/misc/flashrom/default.nix
R. RyanTM fcab0697f4 flashrom: 1.0.1 -> 1.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/flashrom/versions
2019-07-01 06:41:41 -07:00

31 lines
940 B
Nix

{ lib, stdenv, fetchurl, pkgconfig, libftdi, pciutils }:
stdenv.mkDerivation rec {
name = "flashrom-${version}";
version = "1.1";
src = fetchurl {
url = "https://download.flashrom.org/releases/flashrom-v${version}.tar.bz2";
sha256 = "06afq680n9p34hi3vrkn12vd1pfyq2062db9qqbi4hi21k3skbdf";
};
# 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;
};
}