summary refs log tree commit diff
path: root/pkgs/development/libraries/xdg-desktop-portal
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2022-02-19 10:34:31 +0100
committerJan Tojnar <jtojnar@gmail.com>2022-02-22 21:54:38 +0100
commit600edd5e3f78c7d22070951bef210aef1c0c7735 (patch)
tree402f8c8571ba7c29f45635326a768f3498a52352 /pkgs/development/libraries/xdg-desktop-portal
parent49c6568a8f4de3782b7cb9c5a0af3f758eded1bc (diff)
downloadnixpkgs-600edd5e3f78c7d22070951bef210aef1c0c7735.tar
nixpkgs-600edd5e3f78c7d22070951bef210aef1c0c7735.tar.gz
nixpkgs-600edd5e3f78c7d22070951bef210aef1c0c7735.tar.bz2
nixpkgs-600edd5e3f78c7d22070951bef210aef1c0c7735.tar.lz
nixpkgs-600edd5e3f78c7d22070951bef210aef1c0c7735.tar.xz
nixpkgs-600edd5e3f78c7d22070951bef210aef1c0c7735.tar.zst
nixpkgs-600edd5e3f78c7d22070951bef210aef1c0c7735.zip
xdg-desktop-portal: 1.10.0 → 1.12.1
https://github.com/flatpak/xdg-desktop-portal/releases/tag/1.12.0
https://github.com/flatpak/xdg-desktop-portal/releases/tag/1.12.1
Diffstat (limited to 'pkgs/development/libraries/xdg-desktop-portal')
-rw-r--r--pkgs/development/libraries/xdg-desktop-portal/default.nix13
1 files changed, 3 insertions, 10 deletions
diff --git a/pkgs/development/libraries/xdg-desktop-portal/default.nix b/pkgs/development/libraries/xdg-desktop-portal/default.nix
index bb8950ca1ec..16ede7f511f 100644
--- a/pkgs/development/libraries/xdg-desktop-portal/default.nix
+++ b/pkgs/development/libraries/xdg-desktop-portal/default.nix
@@ -1,7 +1,6 @@
 { stdenv
 , lib
 , fetchFromGitHub
-, fetchpatch
 , nixosTests
 , substituteAll
 , autoreconfHook
@@ -22,7 +21,7 @@
 
 stdenv.mkDerivation rec {
   pname = "xdg-desktop-portal";
-  version = "1.10.1";
+  version = "1.12.1";
 
   outputs = [ "out" "installedTests" ];
 
@@ -30,7 +29,7 @@ stdenv.mkDerivation rec {
     owner = "flatpak";
     repo = pname;
     rev = version;
-    sha256 = "Q1ZP/ljdIxJHg+3JaTL/LIZV+3cK2+dognsTC95udVA=";
+    sha256 = "1fc3LXN6wp/zQw4HQ0Q99HUvBhynHrQi2p3s/08izuE=";
   };
 
   patches = [
@@ -39,12 +38,6 @@ stdenv.mkDerivation rec {
       src = ./fix-paths.patch;
       inherit flatpak;
     })
-    # Fixes the issue in https://github.com/flatpak/xdg-desktop-portal/issues/636
-    # Remove it when the next stable release arrives
-    (fetchpatch {
-      url = "https://github.com/flatpak/xdg-desktop-portal/commit/d7622e15ff8fef114a6759dde564826d04215a9f.patch";
-      sha256 = "sha256-vmfxK4ddG6Xon//rpiz6OiBsDLtT0VG5XyBJG3E4PPs=";
-    })
   ];
 
   nativeBuildInputs = [
@@ -84,7 +77,7 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     description = "Desktop integration portals for sandboxed apps";
-    license = licenses.lgpl21;
+    license = licenses.lgpl2Plus;
     maintainers = with maintainers; [ jtojnar ];
     platforms = platforms.linux;
   };