summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorMihai Fufezan <fufexan@protonmail.com>2023-09-23 11:33:19 +0300
committerJörg Thalheim <Mic92@users.noreply.github.com>2023-09-23 19:00:11 +0200
commitdedf778cb0c3de0615b043b16d9e8344451fa8f0 (patch)
treeaae563561c70f5de73ace43ac96877bc287451f0 /pkgs/applications/window-managers
parent92522217afeebb49baefc5dcea0dce8e7f4f200f (diff)
downloadnixpkgs-dedf778cb0c3de0615b043b16d9e8344451fa8f0.tar
nixpkgs-dedf778cb0c3de0615b043b16d9e8344451fa8f0.tar.gz
nixpkgs-dedf778cb0c3de0615b043b16d9e8344451fa8f0.tar.bz2
nixpkgs-dedf778cb0c3de0615b043b16d9e8344451fa8f0.tar.lz
nixpkgs-dedf778cb0c3de0615b043b16d9e8344451fa8f0.tar.xz
nixpkgs-dedf778cb0c3de0615b043b16d9e8344451fa8f0.tar.zst
nixpkgs-dedf778cb0c3de0615b043b16d9e8344451fa8f0.zip
xdg-desktop-portal-hyprland: unstable-2023-09-10 -> 1.1.0
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/hyprwm/xdg-desktop-portal-hyprland/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/window-managers/hyprwm/xdg-desktop-portal-hyprland/default.nix b/pkgs/applications/window-managers/hyprwm/xdg-desktop-portal-hyprland/default.nix
index dd0882edc29..37c4bb03002 100644
--- a/pkgs/applications/window-managers/hyprwm/xdg-desktop-portal-hyprland/default.nix
+++ b/pkgs/applications/window-managers/hyprwm/xdg-desktop-portal-hyprland/default.nix
@@ -21,15 +21,15 @@
 , hyprland
 , slurp
 }:
-stdenv.mkDerivation {
+stdenv.mkDerivation (self: {
   pname = "xdg-desktop-portal-hyprland";
-  version = "unstable-2023-09-10";
+  version = "1.1.0";
 
   src = fetchFromGitHub {
     owner = "hyprwm";
     repo = "xdg-desktop-portal-hyprland";
-    rev = "aca51609d4c415b30e88b96c6f49f0142cbcdae7";
-    hash = "sha256-RF6LXm4J6mBF3B8VcQuABuU4g4tCPHgMYJQSoJ3DW+8=";
+    rev = "v${self.version}";
+    hash = "sha256-K1cqx+NP4lxPwRVPLEeSUfagaMI3m5hdYvQe7sZr7BU=";
   };
 
   nativeBuildInputs = [
@@ -73,4 +73,4 @@ stdenv.mkDerivation {
     maintainers = with maintainers; [ fufexan ];
     platforms = platforms.linux;
   };
-}
+})