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 = { inputs = {
hyprland.url = "github:hyprwm/Hyprland"; hyprland.url = "github:hyprwm/Hyprland";
nix-filter.url = "github:numtide/nix-filter"; nix-filter.url = "github:numtide/nix-filter";
}; };
outputs = { self, hyprland, nix-filter, ... }:
outputs = { let
self,
hyprland,
nix-filter,
...
}: let
inherit (hyprland.inputs) nixpkgs; inherit (hyprland.inputs) nixpkgs;
forHyprlandSystems = fn: nixpkgs.lib.genAttrs (builtins.attrNames hyprland.packages) (system: fn system nixpkgs.legacyPackages.${system}); forHyprlandSystems = fn: nixpkgs.lib.genAttrs (builtins.attrNames hyprland.packages) (system: fn system nixpkgs.legacyPackages.${system});
in { in
packages = forHyprlandSystems (system: pkgs: rec { {
hyprland-easymotion = pkgs.gcc13Stdenv.mkDerivation { packages = forHyprlandSystems
(system: pkgs: rec {
hyprfocus = pkgs.gcc13Stdenv.mkDerivation {
pname = "hyprland-easymotion"; pname = "hyprland-easymotion";
version = "1.0.0"; version = "0.1";
buildPhase = ''
export HOME=$(pwd)
'';
src = nix-filter.lib { src = nix-filter.lib {
root = ./.; root = ./.;
include = [ include = [
"src" "src"
"include"
./Makefile ./Makefile
]; ];
}; };
# allow overriding xwayland support
BUILT_WITH_NOXWAYLAND = false;
nativeBuildInputs = with pkgs; [ pkg-config ]; nativeBuildInputs = with pkgs; [ pkg-config ];
buildInputs = with pkgs; buildInputs = with pkgs; [
[
hyprland.packages.${system}.hyprland.dev hyprland.packages.${system}.hyprland.dev
pango
cairo
] ]
++ hyprland.packages.${system}.hyprland.buildInputs; ++ hyprland.packages.${system}.hyprland.buildInputs;
installPhase = ''
mkdir -p $out/lib
install ./hyprland-easymotion.so $out/lib/libhyprland-easymotion.so
'';
meta = with pkgs.lib; { meta = with pkgs.lib; {
homepage = "https://github.com/zakk4223/hyprland-easymotion"; homepage = "https://github.com/zakk4223/hyprland-easymotion";
description = "Easymotion, for hyprland"; description = "Easymotion, for hyprland";
license = licenses.bsd3; license = licenses.bsd3;
platforms = platforms.linux; platforms = platforms.linux;
}; };
};
};
default = hyprland-easymotion; 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];
};
});
}; };
} }