mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
Merge pull request #126275 from NixOS/flashrom-manpage
flashrom: Build and install manpage
This commit is contained in:
commit
e1f4b78940
@ -7,6 +7,7 @@
|
||||
, libftdi1
|
||||
, libusb1
|
||||
, pciutils
|
||||
, installShellFiles
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -18,8 +19,15 @@ stdenv.mkDerivation rec {
|
||||
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 ];
|
||||
nativeBuildInputs = [ meson pkg-config ninja installShellFiles ];
|
||||
buildInputs = [ libftdi1 libusb1 pciutils ];
|
||||
|
||||
meta = with lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user