about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/flashrom/default.nix
blob: 66a8b213403c81906a07ff2a3955f670ba5246d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ lib
, stdenv
, fetchurl
, meson
, ninja
, pkg-config
, libftdi1
, libusb1
, pciutils
, installShellFiles
}:

stdenv.mkDerivation rec {
  pname = "flashrom";
  version = "1.2";

  src = fetchurl {
    url = "https://download.flashrom.org/releases/flashrom-v${version}.tar.bz2";
    sha256 = "0ax4kqnh7kd3z120ypgp73qy1knz47l6qxsqzrfkd97mh5cdky71";
  };

  # Meson build doesn't build and install manpage. Only Makefile can.
  # Build manpage from source directory. Here we're inside the ./build subdirectory
  postInstall = ''
    make flashrom.8 -C ..
    installManPage ../flashrom.8
  '';

  mesonFlags = lib.optionals stdenv.isAarch64 [ "-Dpciutils=false" ];
  nativeBuildInputs = [ meson pkg-config ninja installShellFiles ];
  buildInputs = [ libftdi1 libusb1 pciutils ];

  meta = with lib; {
    homepage = "http://www.flashrom.org";
    description = "Utility for reading, writing, erasing and verifying flash ROM chips";
    license = licenses.gpl2;
    maintainers = with maintainers; [ funfunctor fpletz ];
    platforms = platforms.all;
    broken = stdenv.isDarwin; # requires DirectHW
  };
}