mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
38da996143
hyprland: 0.23.0beta -> 0.24.0 hyprpaper: unstable-2022-09-30 -> unstable-2023-04-05 hyprpicker: unstable-2023-03-09 -> unstable-2023-03-31 xdg-desktop-portal-hyprland: unstable-2023-03-16 -> unstable-2023-04-06
23 lines
569 B
Nix
23 lines
569 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, wayland
|
|
}:
|
|
{
|
|
version = "unstable-2023-04-06";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hyprwm";
|
|
repo = "xdg-desktop-portal-hyprland";
|
|
rev = "803c00db1191604d50766358dbc5be2de4fcb4e7";
|
|
hash = "sha256-+AagxTHrzKgngG+guIWAIV5hX1HkkvMbDxbUq2IVwAM=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "xdg-desktop-portal backend for Hyprland";
|
|
homepage = "https://github.com/hyprwm/xdg-desktop-portal-hyprland";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fufexan ];
|
|
platforms = wayland.meta.platforms;
|
|
};
|
|
}
|