Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

flashrom: 0.9.9 -> 1.0

+6 -6
+6 -6
pkgs/tools/misc/flashrom/default.nix
··· 1 - { stdenv, fetchurl, pkgconfig, libftdi, pciutils }: 2 3 - let version = "0.9.9"; in 4 stdenv.mkDerivation rec { 5 name = "flashrom-${version}"; 6 ··· 14 15 preConfigure = "export PREFIX=$out"; 16 17 - meta = { 18 homepage = http://www.flashrom.org; 19 description = "Utility for reading, writing, erasing and verifying flash ROM chips"; 20 - license = stdenv.lib.licenses.gpl2; 21 - maintainers = [ stdenv.lib.maintainers.funfunctor ]; 22 - platforms = with stdenv.lib.platforms; linux; 23 }; 24 }
··· 1 + { lib, stdenv, fetchurl, pkgconfig, libftdi, pciutils }: 2 3 + let version = "1.0"; in 4 stdenv.mkDerivation rec { 5 name = "flashrom-${version}"; 6 ··· 14 15 preConfigure = "export PREFIX=$out"; 16 17 + meta = with lib; { 18 homepage = http://www.flashrom.org; 19 description = "Utility for reading, writing, erasing and verifying flash ROM chips"; 20 + license = licenses.gpl2; 21 + maintainers = with maintainers; [ funfunctor fpletz ]; 22 + platforms = with platforms; linux; 23 }; 24 }