about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2020-03-02 14:22:54 +0000
committerGitHub <noreply@github.com>2020-03-02 14:22:54 +0000
commit398f9a2335ef8b8debd5003ebb56ee5facde2ea2 (patch)
tree11f041a83b50ea08b7c3e96e562eb14fee4fdd7d /pkgs/development/libraries
parentd23a92ec017cf5c112d61a2a1c56f0d8f5c27e7c (diff)
parentb6b8a9ded28a5b8a2b4c4e9a0876031e04c22340 (diff)
downloadnixlib-398f9a2335ef8b8debd5003ebb56ee5facde2ea2.tar
nixlib-398f9a2335ef8b8debd5003ebb56ee5facde2ea2.tar.gz
nixlib-398f9a2335ef8b8debd5003ebb56ee5facde2ea2.tar.bz2
nixlib-398f9a2335ef8b8debd5003ebb56ee5facde2ea2.tar.lz
nixlib-398f9a2335ef8b8debd5003ebb56ee5facde2ea2.tar.xz
nixlib-398f9a2335ef8b8debd5003ebb56ee5facde2ea2.tar.zst
nixlib-398f9a2335ef8b8debd5003ebb56ee5facde2ea2.zip
Merge pull request #81331 from r-ryantm/auto-update/libgdata
libgdata: 0.17.11 -> 0.17.12
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/libgdata/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/libraries/libgdata/default.nix b/pkgs/development/libraries/libgdata/default.nix
index 6830d47df74b..91bb9869f3c6 100644
--- a/pkgs/development/libraries/libgdata/default.nix
+++ b/pkgs/development/libraries/libgdata/default.nix
@@ -12,7 +12,6 @@
 , gcr
 , gnome-online-accounts
 , gobject-introspection
-, liboauth
 , gnome3
 , p11-kit
 , openssl
@@ -22,13 +21,13 @@
 
 stdenv.mkDerivation rec {
   pname = "libgdata";
-  version = "0.17.11";
+  version = "0.17.12";
 
   outputs = [ "out" "dev" "installedTests" ];
 
   src = fetchurl {
     url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
-    sha256 = "11m99sh2k679rnsvqsi95s1l0r8lkvj61dmwg1pnxvsd5q91g6bb";
+    sha256 = "0613nihsvwvdnmlbjnwi8zqxgmpwyxdapzznq4cy1fp84246zzd0";
   };
 
   patches = [
@@ -47,7 +46,6 @@ stdenv.mkDerivation rec {
   buildInputs = [
     gcr
     glib
-    liboauth
     libsoup
     libxml2
     openssl
@@ -80,7 +78,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "GData API library";
-    homepage = https://wiki.gnome.org/Projects/libgdata;
+    homepage = "https://wiki.gnome.org/Projects/libgdata";
     maintainers = with maintainers; [ raskin lethalman ] ++ gnome3.maintainers;
     platforms = platforms.linux;
     license = licenses.lgpl21Plus;