2015-04-10 09:24:42 +01:00
|
|
|
{ stdenv, fetchurl, glib, pkgconfig, intltool, libxslt, docbook_xsl, gtk_doc
|
2016-08-20 15:11:44 +01:00
|
|
|
, libgcrypt, gobjectIntrospection, vala_0_32 }:
|
2015-04-10 09:24:42 +01:00
|
|
|
let
|
2016-04-13 00:06:10 +01:00
|
|
|
version = "0.18.5";
|
2015-04-10 09:24:42 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2013-06-21 18:59:20 +01:00
|
|
|
name = "libsecret-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-13 00:06:10 +01:00
|
|
|
url = "mirror://gnome/sources/libsecret/0.18/${name}.tar.xz";
|
|
|
|
sha256 = "1cychxc3ff8fp857iikw0n2s13s2mhw2dn1mr632f7w3sn6vvrww";
|
2013-06-21 18:59:20 +01:00
|
|
|
};
|
|
|
|
|
2017-01-10 14:23:16 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2016-08-12 04:42:13 +01:00
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
|
|
|
|
|
2015-04-10 09:24:42 +01:00
|
|
|
propagatedBuildInputs = [ glib ];
|
|
|
|
nativeBuildInputs = [ pkgconfig intltool libxslt docbook_xsl ];
|
2016-08-20 15:11:44 +01:00
|
|
|
buildInputs = [ libgcrypt gobjectIntrospection vala_0_32 ];
|
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
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|