summary refs log tree commit diff
path: root/pkgs/tools/misc/flashrom/default.nix
blob: b514f1c920f2bb917d7f419e3bdb15ac6d352040 (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
{ stdenv, fetchurl, pkgconfig, libftdi, pciutils }:

let version = "0.9.7"; in
stdenv.mkDerivation rec {
  name = "flashrom-${version}";

  src = fetchurl {
    url = "http://download.flashrom.org/releases/${name}.tar.bz2";
    sha256 = "5a55212d00791981a9a1cb0cdca9d9e58bea6d399864251e7b410b4d3d6137e9";
  };

  buildInputs = [ pkgconfig libftdi pciutils ];

  preConfigure = "export PREFIX=$out";

  meta = {
    homepage = "http://www.flashrom.org";
    description = "Utility for reading, writing, erasing and verifying flash ROM chips";
    license = stdenv.lib.licenses.gpl2;
    maintainers = [ stdenv.lib.maintainers.funfunctor ];
    platforms = with stdenv.lib.platforms; linux;
  };
}