about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/window-managers/hyprwm/xdg-desktop-portal-hyprland/source.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/window-managers/hyprwm/xdg-desktop-portal-hyprland/source.nix')
-rw-r--r--nixpkgs/pkgs/applications/window-managers/hyprwm/xdg-desktop-portal-hyprland/source.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/nixpkgs/pkgs/applications/window-managers/hyprwm/xdg-desktop-portal-hyprland/source.nix b/nixpkgs/pkgs/applications/window-managers/hyprwm/xdg-desktop-portal-hyprland/source.nix
deleted file mode 100644
index cb4c3efad137..000000000000
--- a/nixpkgs/pkgs/applications/window-managers/hyprwm/xdg-desktop-portal-hyprland/source.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ lib
-, fetchFromGitHub
-, wayland
-}:
-let
-  version = "0.5.0";
-in
-{
-  inherit version;
-
-  src = fetchFromGitHub {
-    owner = "hyprwm";
-    repo = "xdg-desktop-portal-hyprland";
-    rev = "v${version}";
-    hash = "sha256-C5AO0KnyAFJaCkOn+5nJfWm0kyiPn/Awh0lKTjhgr7Y=";
-  };
-
-  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;
-  };
-}