xdg-desktop-portal-hyprland/nix/hyprland-share-picker.nix

18 lines
269 B
Nix
Raw Normal View History

2022-12-04 21:23:27 +01:00
{
stdenv,
lib,
cmake,
qtbase,
wrapQtAppsHook,
version ? "git",
...
}:
stdenv.mkDerivation {
pname = "hyprland-share-picker";
inherit version;
src = ../hyprland-share-picker;
nativeBuildInputs = [cmake wrapQtAppsHook];
buildInputs = [qtbase];
}