tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
flashrom: 0.9.9 -> 1.0
Franz Pletz
8 years ago
80a9c4c8
ba7be348
+6
-6
1 changed file
expand all
collapse all
unified
split
pkgs
tools
misc
flashrom
default.nix
+6
-6
pkgs/tools/misc/flashrom/default.nix
···
1
1
-
{ stdenv, fetchurl, pkgconfig, libftdi, pciutils }:
1
1
+
{ lib, stdenv, fetchurl, pkgconfig, libftdi, pciutils }:
2
2
3
3
-
let version = "0.9.9"; in
3
3
+
let version = "1.0"; in
4
4
stdenv.mkDerivation rec {
5
5
name = "flashrom-${version}";
6
6
···
14
14
15
15
preConfigure = "export PREFIX=$out";
16
16
17
17
-
meta = {
17
17
+
meta = with lib; {
18
18
homepage = http://www.flashrom.org;
19
19
description = "Utility for reading, writing, erasing and verifying flash ROM chips";
20
20
-
license = stdenv.lib.licenses.gpl2;
21
21
-
maintainers = [ stdenv.lib.maintainers.funfunctor ];
22
22
-
platforms = with stdenv.lib.platforms; linux;
20
20
+
license = licenses.gpl2;
21
21
+
maintainers = with maintainers; [ funfunctor fpletz ];
22
22
+
platforms = with platforms; linux;
23
23
};
24
24
}