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,
|
||||
debug ? false,
|
||||
version ? "git",
|
||||
src,
|
||||
}:
|
||||
stdenv.mkDerivation {
|
||||
pname = "xdg-desktop-portal-hyprland" + lib.optionalString debug "-debug";
|
||||
inherit version;
|
||||
|
||||
src = ../.;
|
||||
inherit src;
|
||||
|
||||
depsBuildBuild = [
|
||||
pkg-config
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ in {
|
|||
stdenv = prev.gcc15Stdenv;
|
||||
inherit (final.qt6) qtbase qttools wrapQtAppsHook qtwayland;
|
||||
inherit version;
|
||||
src = self;
|
||||
};
|
||||
})
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue