about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/flashrom/default.nix
blob: b45df3f57b562d98e7b3ab1a065d545e450e01d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, stdenv, fetchurl, pkgconfig, libftdi, pciutils }:

stdenv.mkDerivation rec {
  name = "flashrom-${version}";
  version = "1.0.1";

  src = fetchurl {
    url = "https://download.flashrom.org/releases/flashrom-v${version}.tar.bz2";
    sha256 = "0i6yrrl69hrqmwd7azj7x3j46m0qpvzmk3b5basym7mnlpfzhyfm";
  };

  # 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;
  };
}