summary refs log tree commit diff
path: root/pkgs/development/libraries/libsecret/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/libsecret/default.nix')
-rw-r--r--pkgs/development/libraries/libsecret/default.nix15
1 files changed, 7 insertions, 8 deletions
diff --git a/pkgs/development/libraries/libsecret/default.nix b/pkgs/development/libraries/libsecret/default.nix
index 08ada463a54..d5055d213fb 100644
--- a/pkgs/development/libraries/libsecret/default.nix
+++ b/pkgs/development/libraries/libsecret/default.nix
@@ -1,20 +1,19 @@
-{ stdenv, fetchurl, glib, dbus_libs, unzip, automake, libtool, autoconf, m4, docbook_xsl,
-  intltool, gtk_doc, gobjectIntrospection, pkgconfig, libxslt, libgcrypt }:
+{ stdenv, fetchurl, glib, dbus_libs, unzip, docbook_xsl
+, intltool, gtk_doc, gobjectIntrospection, pkgconfig, libxslt, libgcrypt
+}:
 
 stdenv.mkDerivation rec {
-  version = "0.16";
+  version = "0.18";
   name = "libsecret-${version}";
 
   src = fetchurl {
-    url = "https://git.gnome.org/browse/libsecret/snapshot/libsecret-${version}.zip";
-    sha256 = "1yf4zvzfa45wr5bqlh54g3bmd0lgcsa8hnhppa99czca0zj7bkks";
+    url = "mirror://gnome/sources/libsecret/${version}/${name}.tar.xz";
+    sha256 = "1qq29c01xxjyx5sl6y5h22w8r0ff4c73bph3gfx3h7mx5mvalwqc";
   };
 
   propagatedBuildInputs = [ glib dbus_libs ];
   nativeBuildInputs = [ unzip ];
-  buildInputs = [ gtk_doc automake libtool autoconf intltool gobjectIntrospection pkgconfig libxslt libgcrypt m4 docbook_xsl ];
-
-  configureScript = "./autogen.sh";
+  buildInputs = [ gtk_doc intltool gobjectIntrospection pkgconfig libxslt libgcrypt docbook_xsl ];
 
   meta = {
     inherit (glib.meta) platforms maintainers;