nixpkgs/pkgs/tools/misc/flashrom/default.nix

25 lines
709 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, libftdi, pciutils }:
2016-04-12 19:33:25 -04:00
let version = "0.9.9"; in
stdenv.mkDerivation rec {
name = "flashrom-${version}";
src = fetchurl {
url = "http://download.flashrom.org/releases/${name}.tar.bz2";
2016-04-12 19:33:25 -04:00
sha256 = "0i9wg1lyfg99bld7d00zqjm9f0lk6m0q3h3n9c195c9yysq5ccfb";
};
2016-04-12 19:33:25 -04:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libftdi pciutils ];
2014-11-11 15:53:16 -05:00
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;
};
}