2013-02-21 20:36:20 +01:00
|
|
|
{stdenv, fetchurl, pkgconfig, dbus, libgcrypt, libtasn1, pam, python, glib
|
|
|
|
, gtk3, intltool, gconf, libgnome_keyring, pango, gcr, gdk_pixbuf, atk, p11_kit }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-12-18 15:39:48 +01:00
|
|
|
name = "gnome-keyring-3.6.3";
|
2013-02-21 20:36:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/gnome-keyring/3.6/${name}.tar.xz";
|
2013-12-18 15:39:48 +01:00
|
|
|
sha256 = "0la107v75vh8v165lk391xg820h8hxa209766wr98pm22qzkl5g0";
|
2013-02-21 20:36:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
dbus libgcrypt pam python gtk3 gconf libgnome_keyring
|
|
|
|
pango gcr gdk_pixbuf atk p11_kit
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ glib libtasn1 ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-ca-certificates=/etc/ssl/certs/ca-bundle.crt" # NixOS hardcoded path
|
|
|
|
"--with-pkcs11-config=$$out/etc/pkcs11/" # installation directories
|
|
|
|
"--with-pkcs11-modules=$$out/lib/pkcs11/"
|
|
|
|
];
|
2014-01-10 01:09:26 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2013-02-21 20:36:20 +01:00
|
|
|
}
|