summary refs log tree commit diff
path: root/pkgs/development/libraries/glib-networking
diff options
context:
space:
mode:
authorTor Hedin Brønner <torhedinbronner@gmail.com>2019-03-03 18:35:28 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-04-05 11:40:00 +0200
commitf95d5f08cf9af2754d640b5ad512324a9a2f2e14 (patch)
tree39ca7175ef0613450f7cdfad02d4859910715e4f /pkgs/development/libraries/glib-networking
parent60a8244b355ccde21b99d49e39686012f1a08f88 (diff)
downloadnixpkgs-f95d5f08cf9af2754d640b5ad512324a9a2f2e14.tar
nixpkgs-f95d5f08cf9af2754d640b5ad512324a9a2f2e14.tar.gz
nixpkgs-f95d5f08cf9af2754d640b5ad512324a9a2f2e14.tar.bz2
nixpkgs-f95d5f08cf9af2754d640b5ad512324a9a2f2e14.tar.lz
nixpkgs-f95d5f08cf9af2754d640b5ad512324a9a2f2e14.tar.xz
nixpkgs-f95d5f08cf9af2754d640b5ad512324a9a2f2e14.tar.zst
nixpkgs-f95d5f08cf9af2754d640b5ad512324a9a2f2e14.zip
glib-networking: 2.58.0 -> 2.60.1
https://gitlab.gnome.org/GNOME/glib-networking/blob/2.60.1/NEWS

* fixes the telepathy-idle CPU load issue
Diffstat (limited to 'pkgs/development/libraries/glib-networking')
-rw-r--r--pkgs/development/libraries/glib-networking/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/development/libraries/glib-networking/default.nix b/pkgs/development/libraries/glib-networking/default.nix
index e8105ef0823..ab5826bc796 100644
--- a/pkgs/development/libraries/glib-networking/default.nix
+++ b/pkgs/development/libraries/glib-networking/default.nix
@@ -3,14 +3,14 @@
 
 let
   pname = "glib-networking";
-  version = "2.58.0";
+  version = "2.60.1";
 in
 stdenv.mkDerivation rec {
   name = "${pname}-${version}";
 
   src = fetchurl {
     url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
-    sha256 = "0s006gs9nsq6mg31spqha1jffzmp6qjh10y27h0fxf1iw1ah5ymx";
+    sha256 = "14jx8ca7plgh196629ghj41gsaha0aza222g64093hjsm8pnn76p";
   };
 
   outputs = [ "out" "dev" ]; # to deal with propagatedBuildInputs
@@ -28,6 +28,11 @@ stdenv.mkDerivation rec {
   ];
   propagatedBuildInputs = [ glib gnutls p11-kit libproxy gsettings-desktop-schemas ];
 
+  mesonFlags = [
+    # Default auto detection doesn't work
+    "-Dgnutls=enabled"
+  ];
+
   doCheck = false; # tests need to access the certificates (among other things)
 
   passthru = {