mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 09:25:58 +01:00
Mihai Fufezan
27211c71e9
Only the fork provides a .pc file, so there's no risk of linking the wrong lib version. If pkg-config can't find it (most cases), fall back to using the subproject through the wrap file.
84 lines
2.7 KiB
Nix
84 lines
2.7 KiB
Nix
{
|
|
self,
|
|
lib,
|
|
inputs,
|
|
}: let
|
|
mkDate = longDate: (lib.concatStringsSep "-" [
|
|
(builtins.substring 0 4 longDate)
|
|
(builtins.substring 4 2 longDate)
|
|
(builtins.substring 6 2 longDate)
|
|
]);
|
|
version = lib.removeSuffix "\n" (builtins.readFile ../VERSION);
|
|
in {
|
|
# Contains what a user is most likely to care about:
|
|
# Hyprland itself, XDPH and the Share Picker.
|
|
default = lib.composeManyExtensions (with self.overlays; [
|
|
hyprland-packages
|
|
hyprland-extras
|
|
]);
|
|
|
|
# Packages for variations of Hyprland, dependencies included.
|
|
hyprland-packages = lib.composeManyExtensions [
|
|
# Dependencies
|
|
inputs.aquamarine.overlays.default
|
|
inputs.hyprcursor.overlays.default
|
|
inputs.hyprland-protocols.overlays.default
|
|
inputs.hyprlang.overlays.default
|
|
inputs.hyprutils.overlays.default
|
|
inputs.hyprwayland-scanner.overlays.default
|
|
self.overlays.udis86
|
|
|
|
# Hyprland packages themselves
|
|
(final: prev: let
|
|
date = mkDate (self.lastModifiedDate or "19700101");
|
|
in {
|
|
hyprland = final.callPackage ./default.nix {
|
|
stdenv = final.gcc14Stdenv;
|
|
version = "${version}+date=${date}_${self.shortRev or "dirty"}";
|
|
commit = self.rev or "";
|
|
revCount = self.sourceInfo.revCount or "";
|
|
inherit date;
|
|
};
|
|
hyprland-unwrapped = final.hyprland.override {wrapRuntimeDeps = false;};
|
|
hyprland-debug = final.hyprland.override {debug = true;};
|
|
hyprland-legacy-renderer = final.hyprland.override {legacyRenderer = true;};
|
|
|
|
# deprecated packages
|
|
hyprland-nvidia =
|
|
builtins.trace ''
|
|
hyprland-nvidia was removed. Please use the hyprland package.
|
|
Nvidia patches are no longer needed.
|
|
''
|
|
final.hyprland;
|
|
|
|
hyprland-hidpi =
|
|
builtins.trace ''
|
|
hyprland-hidpi was removed. Please use the hyprland package.
|
|
For more information, refer to https://wiki.hyprland.org/Configuring/XWayland.
|
|
''
|
|
final.hyprland;
|
|
})
|
|
];
|
|
|
|
# Packages for extra software recommended for usage with Hyprland,
|
|
# including forked or patched packages for compatibility.
|
|
hyprland-extras = lib.composeManyExtensions [
|
|
inputs.xdph.overlays.xdg-desktop-portal-hyprland
|
|
];
|
|
|
|
# udis86 from nixpkgs is too old, and also does not provide a .pc file
|
|
# this version is the one used in the git submodule, and allows us to
|
|
# fetch the source without '?submodules=1'
|
|
udis86 = final: prev: {
|
|
udis86-hyprland = prev.udis86.overrideAttrs (self: super: {
|
|
src = final.fetchFromGitHub {
|
|
owner = "canihavesomecoffee";
|
|
repo = "udis86";
|
|
rev = "5336633af70f3917760a6d441ff02d93477b0c86";
|
|
hash = "sha256-HifdUQPGsKQKQprByeIznvRLONdOXeolOsU5nkwIv3g=";
|
|
};
|
|
|
|
patches = [];
|
|
});
|
|
};
|
|
}
|