2019-01-03 12:06:41 +00:00
|
|
|
{ stdenv, fetchurl, glib, pkgconfig, gettext, libxslt, python3, docbook_xsl, docbook_xml_dtd_42
|
2018-12-02 11:41:15 +00:00
|
|
|
, libgcrypt, gobject-introspection, vala, gtk-doc, gnome3, libintl, dbus, xvfb_run }:
|
2018-08-08 19:53:09 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-03 05:24:48 +00:00
|
|
|
pname = "libsecret";
|
2019-03-03 00:00:23 +00:00
|
|
|
version = "0.18.8";
|
2013-06-21 18:59:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-01-03 12:06:41 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-03-03 00:00:23 +00:00
|
|
|
sha256 = "058x64689k55wxfkdp4svhnwvv8jmqm7z5mrynybl38f4sfqiyiv";
|
2013-06-21 18:59:20 +01:00
|
|
|
};
|
|
|
|
|
2018-08-08 19:53:09 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
2018-09-05 01:50:56 +01:00
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
2017-01-10 14:23:16 +00:00
|
|
|
|
2015-04-10 09:24:42 +01:00
|
|
|
propagatedBuildInputs = [ glib ];
|
2019-01-03 12:06:41 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig gettext libxslt docbook_xsl docbook_xml_dtd_42 libintl gobject-introspection vala gtk-doc ];
|
2018-09-05 01:50:56 +01:00
|
|
|
buildInputs = [ libgcrypt ];
|
2015-04-10 09:24:42 +01:00
|
|
|
# optional: build docs with gtk-doc? (probably needs a flag as well)
|
2013-06-21 18:59:20 +01:00
|
|
|
|
2018-09-05 01:50:56 +01:00
|
|
|
enableParallelBuilding = true;
|
2018-08-08 19:53:09 +01:00
|
|
|
|
2018-09-05 01:50:56 +01:00
|
|
|
installCheckInputs = [ python3 python3.pkgs.dbus-python python3.pkgs.pygobject3 xvfb_run dbus gnome3.gjs ];
|
|
|
|
|
|
|
|
# needs to run after install because typelibs point to absolute paths
|
|
|
|
doInstallCheck = false; # Failed to load shared library '/force/shared/libmock_service.so.0' referenced by the typelib
|
|
|
|
installCheckPhase = ''
|
|
|
|
export NO_AT_BRIDGE=1
|
|
|
|
xvfb-run -s '-screen 0 800x600x24' dbus-run-session \
|
|
|
|
--config-file=${dbus.daemon}/share/dbus-1/session.conf \
|
|
|
|
make check
|
|
|
|
'';
|
2018-08-08 19:53:09 +01:00
|
|
|
|
2018-03-03 05:24:48 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2013-06-21 18:59:20 +01:00
|
|
|
meta = {
|
2015-04-10 09:24:42 +01:00
|
|
|
description = "A library for storing and retrieving passwords and other secrets";
|
|
|
|
homepage = https://wiki.gnome.org/Projects/Libsecret;
|
|
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
2013-06-21 18:59:20 +01:00
|
|
|
inherit (glib.meta) platforms maintainers;
|
|
|
|
};
|
|
|
|
}
|