split-monitor-workspaces/flake.nix
2023-08-29 19:14:04 +02:00

48 lines
1.4 KiB
Nix

{
inputs = {
hyprland.url = "github:hyprwm/Hyprland";
};
outputs = { self, hyprland, ... }: let
inherit (hyprland.inputs) nixpkgs;
hyprlandSystems = fn: nixpkgs.lib.genAttrs (builtins.attrNames hyprland.packages) (system: fn system nixpkgs.legacyPackages.${system});
in {
packages = hyprlandSystems (system: pkgs: rec {
split-monitor-workspaces = pkgs.stdenv.mkDerivation {
pname = "split-monitor-workspaces";
version = "0.1";
src = ./.;
nativeBuildInputs = with pkgs; [ meson ninja pkg-config ];
buildInputs = with pkgs; [
hyprland.packages.${system}.hyprland.dev
pango
cairo
] ++ hyprland.packages.${system}.hyprland.buildInputs;
meta = with pkgs.lib; {
homepage = "https://github.com/Duckonaut/split-monitor-workspaces";
description = "A small Hyprland plugin to provide awesome-like workspace behavior";
license = licenses.bsd3;
platforms = platforms.linux;
};
};
default = split-monitor-workspaces;
});
devShells = hyprlandSystems (system: pkgs: {
default = pkgs.mkShell {
name = "split-monitor-workspaces";
nativeBuildInputs = with pkgs; [
clang-tools_16
bear
];
inputsFrom = [ self.packages.${system}.split-monitor-workspaces ];
};
});
};
}