depot/third_party/nixpkgs/pkgs/by-name/hy/hyprland-monitor-attached/package.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

24 lines
747 B
Nix

{ rustPlatform, fetchFromGitHub, lib }:
rustPlatform.buildRustPackage rec {
pname = "hyprland-monitor-attached";
version = "0.1.6";
src = fetchFromGitHub {
owner = "coffebar";
repo = "hyprland-monitor-attached";
rev = version;
hash = "sha256-+bgOOm1B513COcWdUIJ/+GREQH5CR8/RNOcZVkjO2hI=";
};
cargoHash = "sha256-vQfDsP2Tc+Kj95wXIzPTlf6kRdBgdio0QkM9EJRjZjE=";
meta = with lib; {
description = "Automatically run a script when a monitor connects (or disconnects) in Hyprland";
homepage = "https://github.com/coffebar/hyprland-monitor-attached";
license = licenses.mit;
maintainers = with maintainers; [ bddvlpr ];
mainProgram = "hyprland-monitor-attached";
platforms = platforms.linux;
};
}