depot/third_party/nixpkgs/pkgs/by-name/hy/hyprland-monitor-attached/package.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

24 lines
747 B
Nix

{ rustPlatform, fetchFromGitHub, lib }:
rustPlatform.buildRustPackage rec {
pname = "hyprland-monitor-attached";
version = "0.1.5";
src = fetchFromGitHub {
owner = "coffebar";
repo = "hyprland-monitor-attached";
rev = version;
hash = "sha256-McenpaoEjQIB709VlLkyVGoUwVoMe7TJPb8Lrh1efw8=";
};
cargoHash = "sha256-QH32NYZJcSxTMgHZKqksy2+DLw62G+knJgoj6OGRfQE=";
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;
};
}