2014-08-28 22:27:28 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libftdi, pciutils }:
|
|
|
|
|
2016-04-13 00:33:25 +01:00
|
|
|
let version = "0.9.9"; in
|
2014-08-28 22:27:28 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "flashrom-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.flashrom.org/releases/${name}.tar.bz2";
|
2016-04-13 00:33:25 +01:00
|
|
|
sha256 = "0i9wg1lyfg99bld7d00zqjm9f0lk6m0q3h3n9c195c9yysq5ccfb";
|
2014-08-28 22:27:28 +01:00
|
|
|
};
|
|
|
|
|
2016-04-13 00:33:25 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libftdi pciutils ];
|
2014-08-28 22:27:28 +01:00
|
|
|
|
2014-11-11 20:53:16 +00:00
|
|
|
preConfigure = "export PREFIX=$out";
|
2014-08-28 22:27:28 +01:00
|
|
|
|
|
|
|
meta = {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.flashrom.org;
|
2014-08-28 22:27:28 +01:00
|
|
|
description = "Utility for reading, writing, erasing and verifying flash ROM chips";
|
2014-11-06 00:44:33 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2014-08-28 22:27:28 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.funfunctor ];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|