Merge pull request #243037 from NixOS/qpdfview-fix

This commit is contained in:
Sandro 2023-07-12 14:33:08 +02:00 committed by GitHub
commit 4afa90a84f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,6 +52,11 @@ mkDerivation rec {
"APPDATA_INSTALL_PATH=${placeholder "out"}/share/appdata"
];
env = {
# Fix build due to missing `std::option`.
NIX_CFLAGS_COMPILE = "-std=c++17";
};
meta = with lib; {
description = "A tabbed document viewer";
license = licenses.gpl2Plus;