summary refs log tree commit diff
path: root/pkgs/development/libraries/libsignon-glib
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-12-03 12:18:43 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-12-03 12:18:43 +0100
commita510aa2672dae525c1eb152f00fd0e6f8eb10f39 (patch)
treeee9b7efb3ca8049b84de1070e3cd2704c109f0f9 /pkgs/development/libraries/libsignon-glib
parent077b7e5880628c12fe6a9ae0b10db848deb85b50 (diff)
parente869896d00d9c7b1485b15e891d21213b4ff97f0 (diff)
downloadnixpkgs-a510aa2672dae525c1eb152f00fd0e6f8eb10f39.tar
nixpkgs-a510aa2672dae525c1eb152f00fd0e6f8eb10f39.tar.gz
nixpkgs-a510aa2672dae525c1eb152f00fd0e6f8eb10f39.tar.bz2
nixpkgs-a510aa2672dae525c1eb152f00fd0e6f8eb10f39.tar.lz
nixpkgs-a510aa2672dae525c1eb152f00fd0e6f8eb10f39.tar.xz
nixpkgs-a510aa2672dae525c1eb152f00fd0e6f8eb10f39.tar.zst
nixpkgs-a510aa2672dae525c1eb152f00fd0e6f8eb10f39.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/development/libraries/libsignon-glib')
-rw-r--r--pkgs/development/libraries/libsignon-glib/default.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/development/libraries/libsignon-glib/default.nix b/pkgs/development/libraries/libsignon-glib/default.nix
index 0e6bdb80cdd..c7f49a6f6dc 100644
--- a/pkgs/development/libraries/libsignon-glib/default.nix
+++ b/pkgs/development/libraries/libsignon-glib/default.nix
@@ -2,15 +2,15 @@
 
 stdenv.mkDerivation rec {
   pname = "libsignon-glib";
-  version = "unstable-2018-10-24";
+  version = "2.1";
 
   outputs = [ "out" "dev" "devdoc" "py" ];
 
   src = fetchgit {
     url = "https://gitlab.com/accounts-sso/${pname}";
-    rev = "3639a2e90447e4640a03a44972560afe8f61aa48";
+    rev = "refs/tags/${version}";
+    sha256 = "0gnx9gqsh0hcfm1lk7w60g64mkn1iicga5f5xcy1j9a9byacsfd0";
     fetchSubmodules = true;
-    sha256 = "1cq19zbsx4c57dc5gp3shp8lzcr1hw2ynylpn1nkvfyyrx80m60w";
   };
 
   nativeBuildInputs = [
@@ -43,9 +43,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    description = ''
-      A library for managing single signon credentials which can be used from GLib applications
-    '';
+    description = "A library for managing single signon credentials which can be used from GLib applications";
     homepage = https://gitlab.com/accounts-sso/libsignon-glib;
     license = licenses.lgpl21;
     maintainers = with maintainers; [ worldofpeace ];