2023-08-04 22:07:22 +00:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "hyprland-per-window-layout";
|
2024-07-27 06:49:29 +00:00
|
|
|
version = "2.11";
|
2023-08-04 22:07:22 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "coffebar";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2024-07-27 06:49:29 +00:00
|
|
|
hash = "sha256-euq+RRUeoKFmEmNJ6dOI01SAp6XywaspmGG5wCspkiA=";
|
2023-08-04 22:07:22 +00:00
|
|
|
};
|
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
cargoHash = "sha256-sK1X3CNZ1PTNaLcGVAx4pk9EXDSfSjptJDwC73DFq7w=";
|
2023-08-04 22:07:22 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Per window keyboard layout (language) for Hyprland wayland compositor";
|
|
|
|
homepage = "https://github.com/coffebar/hyprland-per-window-layout";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.azazak123 ];
|
|
|
|
platforms = platforms.linux;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "hyprland-per-window-layout";
|
2023-08-04 22:07:22 +00:00
|
|
|
};
|
|
|
|
}
|