mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-23 22:55:58 +01:00
18 lines
269 B
Nix
18 lines
269 B
Nix
|
{
|
||
|
stdenv,
|
||
|
lib,
|
||
|
cmake,
|
||
|
qtbase,
|
||
|
wrapQtAppsHook,
|
||
|
version ? "git",
|
||
|
...
|
||
|
}:
|
||
|
stdenv.mkDerivation {
|
||
|
pname = "hyprland-share-picker";
|
||
|
inherit version;
|
||
|
src = ../hyprland-share-picker;
|
||
|
|
||
|
nativeBuildInputs = [cmake wrapQtAppsHook];
|
||
|
buildInputs = [qtbase];
|
||
|
}
|