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;
inherit (nixpkgs-wayland.overlay.waylandPkgs) wlroots;
};
};
} // utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in rec {
overlays = [ self.overlay ];
packages = {
2022-05-08 20:23:49 +03:00
hyprland = pkgs.callPackage self {
src = self;
inherit (nixpkgs-wayland.packages.${system}) wlroots;
};
};
defaultPackage = packages.hyprland;
2022-05-14 19:15:08 +03:00
# apps.hyprland = utils.lib.mkApp { drv = packages.hyprland; };
# defaultApp = apps.${system}.hyprland;
# apps.default =
# utils.lib.mkApp { drv = self.packages."${system}".hyprland; };
});
}