mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2025-12-19 23:50:02 +01:00
nix: use self as src (#339)
This commit is contained in:
parent
44bf29f1df
commit
f4e0ab5317
2 changed files with 3 additions and 1 deletions
|
|
@ -24,12 +24,13 @@
|
||||||
wayland-scanner,
|
wayland-scanner,
|
||||||
debug ? false,
|
debug ? false,
|
||||||
version ? "git",
|
version ? "git",
|
||||||
|
src,
|
||||||
}:
|
}:
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "xdg-desktop-portal-hyprland" + lib.optionalString debug "-debug";
|
pname = "xdg-desktop-portal-hyprland" + lib.optionalString debug "-debug";
|
||||||
inherit version;
|
inherit version;
|
||||||
|
|
||||||
src = ../.;
|
inherit src;
|
||||||
|
|
||||||
depsBuildBuild = [
|
depsBuildBuild = [
|
||||||
pkg-config
|
pkg-config
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,7 @@ in {
|
||||||
stdenv = prev.gcc15Stdenv;
|
stdenv = prev.gcc15Stdenv;
|
||||||
inherit (final.qt6) qtbase qttools wrapQtAppsHook qtwayland;
|
inherit (final.qt6) qtbase qttools wrapQtAppsHook qtwayland;
|
||||||
inherit version;
|
inherit version;
|
||||||
|
src = self;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue