2021-05-08 00:18:14 +03:00
|
|
|
{ lib, stdenv, fetchurl, glib, dbus, libgcrypt, pkg-config, intltool, gobject-introspection, gnome }:
|
2016-09-18 22:35:23 +03:00
|
|
|
|
2018-03-03 04:06:40 +03:00
|
|
|
let
|
|
|
|
pname = "libgnome-keyring";
|
|
|
|
version = "3.12.0";
|
|
|
|
in
|
2016-09-18 22:35:23 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-03 04:06:40 +03:00
|
|
|
name = "${pname}-${version}";
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-15 16:21:58 +03:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${name}.tar.xz";
|
2016-09-18 22:35:23 +03:00
|
|
|
sha256 = "c4c178fbb05f72acc484d22ddb0568f7532c409b0a13e06513ff54b91e947783";
|
|
|
|
};
|
|
|
|
|
2017-05-24 00:25:13 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2018-12-02 14:41:15 +03:00
|
|
|
propagatedBuildInputs = [ glib gobject-introspection dbus libgcrypt ];
|
2021-01-17 05:21:50 +03:00
|
|
|
nativeBuildInputs = [ pkg-config intltool ];
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Framework for managing passwords and other secrets";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://wiki.gnome.org/Projects/GnomeKeyring";
|
2021-01-15 16:21:58 +03:00
|
|
|
license = with lib.licenses; [ gpl2Plus lgpl2Plus ];
|
2016-09-18 22:35:23 +03:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|