60f07311b9
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
24 lines
712 B
Nix
24 lines
712 B
Nix
{ lib, fetchFromGitHub, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "hyprland-per-window-layout";
|
|
version = "2.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "coffebar";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-Tci3OR7c8hEWAnFsBlSNZYt7znAxPRDhJV+1q7fw6z8=";
|
|
};
|
|
|
|
cargoHash = "sha256-lVNephJ6UfdM6dPnHs+jHG9A79qHEsrm7tcjcDralnY=";
|
|
|
|
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;
|
|
mainProgram = "hyprland-per-window-layout";
|
|
};
|
|
}
|