depot/third_party/nixpkgs/pkgs/tools/wayland/hyprland-per-window-layout/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

23 lines
664 B
Nix

{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "hyprland-per-window-layout";
version = "2.3";
src = fetchFromGitHub {
owner = "coffebar";
repo = pname;
rev = version;
hash = "sha256-eqhGX9rjvOHh6RuWj5dqWPKlFdTnZpAcDUuJbT3Z/E8=";
};
cargoHash = "sha256-AUkBTHShtY3ZJ8pxCuW9baVuxb2QxzXxJQMgbuVTlPY=";
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;
};
}