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
-
{ 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
}