2018-12-02 11:41:15 +00:00
|
|
|
{ stdenv, fetchurl, glib, dbus, libgcrypt, pkgconfig, intltool, gobject-introspection, gnome3 }:
|
2016-09-18 19:35:23 +00:00
|
|
|
|
2018-03-03 01:06:40 +00:00
|
|
|
let
|
|
|
|
pname = "libgnome-keyring";
|
|
|
|
version = "3.12.0";
|
|
|
|
in
|
2016-09-18 19:35:23 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-03 01:06:40 +00:00
|
|
|
name = "${pname}-${version}";
|
2016-09-18 19:35:23 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-10-05 00:12:11 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2016-09-18 19:35:23 +00:00
|
|
|
sha256 = "c4c178fbb05f72acc484d22ddb0568f7532c409b0a13e06513ff54b91e947783";
|
|
|
|
};
|
|
|
|
|
2017-05-23 21:25:13 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2018-12-02 11:41:15 +00:00
|
|
|
propagatedBuildInputs = [ glib gobject-introspection dbus libgcrypt ];
|
2016-09-18 19:35:23 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
|
|
|
2018-03-03 01:06:40 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "gnome3.${pname}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 19:35:23 +00:00
|
|
|
meta = {
|
|
|
|
description = "Framework for managing passwords and other secrets";
|
2018-03-03 01:06:40 +00:00
|
|
|
homepage = https://wiki.gnome.org/Projects/GnomeKeyring;
|
2016-09-18 19:35:23 +00:00
|
|
|
license = with stdenv.lib.licenses; [ gpl2Plus lgpl2Plus ];
|
|
|
|
inherit (glib.meta) platforms maintainers;
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
gnome-keyring is a program that keeps password and other secrets for
|
|
|
|
users. The library libgnome-keyring is used by applications to integrate
|
|
|
|
with the gnome-keyring system.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|