updated flake

This commit is contained in:
bowlbird
2024-09-22 22:48:57 +00:00
parent 5e30d47e8f
commit e6e1429a98

View File

@@ -1,71 +1,50 @@
# based off of split-monitor-workspaces flake.nix
# https://github.com/Duckonaut/split-monitor-workspaces/blob/main/flake.nix
{
inputs = {
hyprland.url = "github:hyprwm/Hyprland";
nix-filter.url = "github:numtide/nix-filter";
};
outputs = { self, hyprland, nix-filter, ... }:
let
inherit (hyprland.inputs) nixpkgs;
forHyprlandSystems = fn: nixpkgs.lib.genAttrs (builtins.attrNames hyprland.packages) (system: fn system nixpkgs.legacyPackages.${system});
in
{
packages = forHyprlandSystems
(system: pkgs: rec {
hyprfocus = pkgs.gcc13Stdenv.mkDerivation {
pname = "hyprland-easymotion";
version = "0.1";
src = nix-filter.lib {
root = ./.;
include = [
"src"
./Makefile
];
};
outputs = {
self,
hyprland,
nix-filter,
...
}: let
inherit (hyprland.inputs) nixpkgs;
forHyprlandSystems = fn: nixpkgs.lib.genAttrs (builtins.attrNames hyprland.packages) (system: fn system nixpkgs.legacyPackages.${system});
in {
packages = forHyprlandSystems (system: pkgs: rec {
hyprland-easymotion = pkgs.gcc13Stdenv.mkDerivation {
pname = "hyprland-easymotion";
version = "1.0.0";
buildPhase = ''
export HOME=$(pwd)
'';
src = nix-filter.lib {
root = ./.;
include = [
"src"
"include"
./Makefile
];
};
# allow overriding xwayland support
BUILT_WITH_NOXWAYLAND = false;
nativeBuildInputs = with pkgs; [ pkg-config ];
nativeBuildInputs = with pkgs; [pkg-config];
buildInputs = with pkgs; [
hyprland.packages.${system}.hyprland.dev
]
++ hyprland.packages.${system}.hyprland.buildInputs;
buildInputs = with pkgs;
[
hyprland.packages.${system}.hyprland.dev
pango
cairo
]
++ hyprland.packages.${system}.hyprland.buildInputs;
installPhase = ''
mkdir -p $out/lib
install ./hyprland-easymotion.so $out/lib/libhyprland-easymotion.so
'';
meta = with pkgs.lib; {
homepage = "https://github.com/zakk4223/hyprland-easymotion";
description = "Easymotion, for hyprland";
license = licenses.bsd3;
platforms = platforms.linux;
};
};
meta = with pkgs.lib; {
homepage = "https://github.com/zakk4223/hyprland-easymotion";
description = "Easymotion, for hyprland";
license = licenses.bsd3;
platforms = platforms.linux;
};
default = hyprland-easymotion;
});
devShells = forHyprlandSystems (system: pkgs: {
default = pkgs.mkShell {
name = "hyprland-easymotion";
nativeBuildInputs = with pkgs; [
clang-tools_16
bear
];
inputsFrom = [self.packages.${system}.hyprland-easymotion];
};
});
};
};
default = hyprland-easymotion;
});
};
}