2022-05-08 18:27:40 +02:00
|
|
|
{
|
2022-05-17 13:11:24 +02:00
|
|
|
description = "Hyprland is a dynamic tiling Wayland compositor that doesn't sacrifice on its looks";
|
|
|
|
|
2022-05-08 18:27:40 +02:00
|
|
|
inputs = {
|
2022-05-17 13:11:24 +02:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
wlroots = {
|
2022-06-22 22:23:46 +02:00
|
|
|
url = "gitlab:wlroots/wlroots?host=gitlab.freedesktop.org";
|
2022-05-16 17:01:28 +02:00
|
|
|
flake = false;
|
|
|
|
};
|
2022-05-08 18:27:40 +02:00
|
|
|
};
|
|
|
|
|
2022-05-17 13:11:24 +02:00
|
|
|
outputs = inputs @ {
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
|
|
|
...
|
|
|
|
}: let
|
2022-05-21 12:07:55 +02:00
|
|
|
inherit (nixpkgs) lib;
|
|
|
|
genSystems = lib.genAttrs [
|
2022-06-20 11:50:06 +02:00
|
|
|
# Add more systems if they are supported
|
2022-05-17 13:11:24 +02:00
|
|
|
"x86_64-linux"
|
|
|
|
];
|
|
|
|
pkgsFor = nixpkgs.legacyPackages;
|
2022-06-20 11:50:06 +02:00
|
|
|
mkDate = longDate: (lib.concatStringsSep "-" [
|
|
|
|
(__substring 0 4 longDate)
|
|
|
|
(__substring 4 2 longDate)
|
|
|
|
(__substring 6 2 longDate)
|
|
|
|
]);
|
2022-06-20 12:16:07 +02:00
|
|
|
in {
|
|
|
|
overlays.default = _: prev: rec {
|
|
|
|
wlroots-hyprland = prev.wlroots.overrideAttrs (__: {
|
2022-06-20 11:50:06 +02:00
|
|
|
version = mkDate (inputs.wlroots.lastModifiedDate or "19700101");
|
2022-05-17 13:11:24 +02:00
|
|
|
src = inputs.wlroots;
|
2022-05-08 18:27:40 +02:00
|
|
|
});
|
2022-06-20 11:50:06 +02:00
|
|
|
hyprland = prev.callPackage ./nix/default.nix {
|
2022-06-29 13:46:41 +02:00
|
|
|
version = "0.6.2beta" + "+date=" + (mkDate (self.lastModifiedDate or "19700101"));
|
2022-06-20 11:50:06 +02:00
|
|
|
wlroots = wlroots-hyprland;
|
2022-05-17 13:11:24 +02:00
|
|
|
};
|
2022-06-29 13:46:41 +02:00
|
|
|
hyprland-debug = hyprland.override {debug = true;};
|
|
|
|
waybar-hyprland = prev.waybar.overrideAttrs (oldAttrs: {
|
|
|
|
mesonFlags = oldAttrs.mesonFlags ++ ["-Dexperimental=true"];
|
|
|
|
});
|
2022-06-20 11:50:06 +02:00
|
|
|
};
|
2022-06-20 12:16:07 +02:00
|
|
|
|
2022-06-20 11:50:06 +02:00
|
|
|
packages = genSystems (system:
|
2022-06-20 12:16:07 +02:00
|
|
|
(self.overlays.default null pkgsFor.${system})
|
2022-06-20 11:50:06 +02:00
|
|
|
// {
|
|
|
|
default = self.packages.${system}.hyprland;
|
|
|
|
});
|
2022-05-17 15:10:00 +02:00
|
|
|
|
2022-05-17 14:03:58 +02:00
|
|
|
formatter = genSystems (system: pkgsFor.${system}.alejandra);
|
2022-05-17 15:10:00 +02:00
|
|
|
|
2022-06-01 00:52:34 +02:00
|
|
|
nixosModules.default = import ./nix/module.nix self;
|
2022-05-17 15:10:00 +02:00
|
|
|
|
2022-06-20 11:50:06 +02:00
|
|
|
overlay = throw "Hyprland: .overlay output is deprecated, please use the .overlays.default output";
|
2022-05-17 13:11:24 +02:00
|
|
|
};
|
2022-05-08 18:27:40 +02:00
|
|
|
}
|