flashrom: 0.9.9 -> 1.0

This commit is contained in:
Franz Pletz 2018-01-28 04:04:14 +01:00
parent ba7be3488f
commit 80a9c4c8e6
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -1,6 +1,6 @@
{ stdenv, fetchurl, pkgconfig, libftdi, pciutils }:
{ lib, stdenv, fetchurl, pkgconfig, libftdi, pciutils }:
let version = "0.9.9"; in
let version = "1.0"; in
stdenv.mkDerivation rec {
name = "flashrom-${version}";
@ -14,11 +14,11 @@ stdenv.mkDerivation rec {
preConfigure = "export PREFIX=$out";
meta = {
meta = with lib; {
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;
license = licenses.gpl2;
maintainers = with maintainers; [ funfunctor fpletz ];
platforms = with platforms; linux;
};
}