Hyprland/flake.nix

56 lines
1.5 KiB
Nix
Raw Normal View History

{
description = "Hyprland is a dynamic tiling Wayland compositor that doesn't sacrifice on its looks";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
wlroots = {
2022-05-16 18:01:28 +03:00
url = "gitlab:wlroots/wlroots?host=gitlab.freedesktop.org";
flake = false;
};
};
outputs = inputs @ {
self,
nixpkgs,
...
}: let
2022-05-21 13:07:55 +03:00
inherit (nixpkgs) lib;
genSystems = lib.genAttrs [
"x86_64-linux"
];
pkgsFor = nixpkgs.legacyPackages;
2022-05-21 13:07:55 +03:00
# https://github.com/NixOS/rfcs/pull/107
mkVersion = longDate:
lib.concatStrings [
"0.pre"
"+date="
(lib.concatStringsSep "-" [
(__substring 0 4 longDate)
(__substring 4 2 longDate)
(__substring 6 2 longDate)
])
];
in {
packages = genSystems (system: {
wlroots = pkgsFor.${system}.wlroots.overrideAttrs (prev: {
version = mkVersion (toString (inputs.wlroots.lastModifiedDate or inputs.wlroots.lastModified or "19700101"));
src = inputs.wlroots;
});
default = pkgsFor.${system}.callPackage ./nix/default.nix {
version = mkVersion (toString (self.lastModifiedDate or self.lastModified or "19700101"));
inherit (self.packages.${system}) wlroots;
};
});
2022-05-17 16:10:00 +03:00
2022-05-17 15:03:58 +03:00
formatter = genSystems (system: pkgsFor.${system}.alejandra);
2022-05-17 16:10:00 +03:00
nixosModules.default = import ./nix/module.nix self;
2022-05-17 16:10:00 +03:00
# Deprecated
2022-05-21 13:07:55 +03:00
overlays.default = _: prev: {
2022-05-17 16:10:00 +03:00
hyprland = self.packages.${prev.system}.default;
};
2022-05-21 13:07:55 +03:00
overlay = self.overlays.default;
};
}