mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-22 06:35:57 +01:00
nix: add libuuid
This commit is contained in:
parent
e33206673d
commit
04f579377a
2 changed files with 27 additions and 6 deletions
|
@ -1,7 +1,6 @@
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
stdenv,
|
stdenv,
|
||||||
fetchpatch,
|
|
||||||
makeWrapper,
|
makeWrapper,
|
||||||
meson,
|
meson,
|
||||||
ninja,
|
ninja,
|
||||||
|
@ -14,11 +13,11 @@
|
||||||
hyprland-protocols,
|
hyprland-protocols,
|
||||||
inih,
|
inih,
|
||||||
libdrm,
|
libdrm,
|
||||||
|
libuuid,
|
||||||
mesa,
|
mesa,
|
||||||
pipewire,
|
pipewire,
|
||||||
systemd,
|
systemd,
|
||||||
wayland,
|
wayland,
|
||||||
libsForQt5,
|
|
||||||
version ? "git",
|
version ? "git",
|
||||||
}:
|
}:
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
|
@ -29,8 +28,24 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
strictDeps = true;
|
strictDeps = true;
|
||||||
depsBuildBuild = [pkg-config];
|
depsBuildBuild = [pkg-config];
|
||||||
nativeBuildInputs = [meson ninja pkg-config wayland-scanner makeWrapper];
|
nativeBuildInputs = [
|
||||||
buildInputs = [hyprland-protocols inih libdrm mesa pipewire systemd wayland wayland-protocols];
|
meson
|
||||||
|
ninja
|
||||||
|
pkg-config
|
||||||
|
wayland-scanner
|
||||||
|
makeWrapper
|
||||||
|
];
|
||||||
|
buildInputs = [
|
||||||
|
hyprland-protocols
|
||||||
|
inih
|
||||||
|
libdrm
|
||||||
|
libuuid
|
||||||
|
mesa
|
||||||
|
pipewire
|
||||||
|
systemd
|
||||||
|
wayland
|
||||||
|
wayland-protocols
|
||||||
|
];
|
||||||
|
|
||||||
mesonFlags = [
|
mesonFlags = [
|
||||||
"-Dsd-bus-provider=libsystemd"
|
"-Dsd-bus-provider=libsystemd"
|
||||||
|
|
|
@ -15,8 +15,14 @@ stdenv.mkDerivation {
|
||||||
inherit version;
|
inherit version;
|
||||||
src = ../hyprland-share-picker;
|
src = ../hyprland-share-picker;
|
||||||
|
|
||||||
nativeBuildInputs = [cmake wrapQtAppsHook makeShellWrapper];
|
nativeBuildInputs = [
|
||||||
buildInputs = [qtbase];
|
cmake
|
||||||
|
wrapQtAppsHook
|
||||||
|
makeShellWrapper
|
||||||
|
];
|
||||||
|
buildInputs = [
|
||||||
|
qtbase
|
||||||
|
];
|
||||||
|
|
||||||
dontWrapQtApps = true;
|
dontWrapQtApps = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue