forked from mirrors/nixpkgs
libsecret: 0.16 -> 0.18
This commit is contained in:
parent
ef03b0ffde
commit
f00f25bf6a
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue