Merge pull request #287307 from bobvanderlinden/flameshot-wayland-clipboard

flameshot: add withWaylandClipboard argument
This commit is contained in:
Sandro 2024-03-24 22:11:53 +01:00 committed by GitHub
commit 1740a34584
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 1 deletions

View File

@ -7,6 +7,7 @@
, qtsvg
, nix-update-script
, fetchpatch
, kguiaddons
}:
mkDerivation rec {
@ -33,8 +34,12 @@ mkDerivation rec {
updateScript = nix-update-script { };
};
cmakeFlags = [
(lib.cmakeBool "USE_WAYLAND_CLIPBOARD" true)
];
nativeBuildInputs = [ cmake qttools qtsvg ];
buildInputs = [ qtbase ];
buildInputs = [ qtbase kguiaddons ];
meta = with lib; {
description = "Powerful yet simple to use screenshot software";