Hyprland/flake.nix

36 lines
1.2 KiB
Nix
Raw Normal View History

# Based on fortuneteller2k's (https://github.com/fortuneteller2k/nixpkgs-f2k) package repo
{
description =
"Hyprland is a dynamic tiling Wayland compositor that doesn't sacrifice on its looks.";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
utils.url = "github:numtide/flake-utils";
nixpkgs-wayland.url = "github:nix-community/nixpkgs-wayland";
};
outputs = { self, nixpkgs, utils, nixpkgs-wayland }:
{
overlay = final: prev: {
hyprland = prev.callPackage self {
src = self;
2022-05-15 23:40:26 +03:00
wlroots = (nixpkgs-wayland.overlays.default final prev).wlroots;
};
};
2022-05-15 23:40:26 +03:00
overlays.default = self.overlay;
} // utils.lib.eachSystem [ "aarch64-linux" "x86_64-linux" ] (system:
let pkgs = nixpkgs.legacyPackages.${system};
in rec {
packages = {
2022-05-08 20:23:49 +03:00
hyprland = pkgs.callPackage self {
src = self;
inherit (nixpkgs-wayland.packages.${system}) wlroots;
};
};
defaultPackage = packages.hyprland;
apps.hyprland = utils.lib.mkApp { drv = packages.hyprland; };
defaultApp = apps.hyprland;
apps.default =
2022-05-15 23:40:26 +03:00
utils.lib.mkApp { drv = self.packages.${system}.hyprland; };
});
}