nixpkgs/pkgs/desktops/gnome-3/core/gnome-keyring/default.nix

64 lines
1.8 KiB
Nix
Raw Normal View History

2018-08-10 01:04:52 +02:00
{ stdenv, fetchurl, pkgconfig, dbus, libgcrypt, pam, python2, glib, libxslt
, gettext, gcr, libcap_ng, libselinux, p11-kit, openssh, wrapGAppsHook
, docbook_xsl, docbook_xml_dtd_43, gnome3 }:
stdenv.mkDerivation rec {
name = "gnome-keyring-${version}";
version = "3.28.2";
src = fetchurl {
url = "mirror://gnome/sources/gnome-keyring/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
sha256 = "0sk4las4ji8wv9nx8mldzqccmpmkvvr9pdwv9imj26r10xyin5w1";
};
2017-09-27 11:25:50 +02:00
outputs = [ "out" "dev" ];
2018-08-10 01:04:52 +02:00
buildInputs = [
glib libgcrypt pam openssh libcap_ng libselinux
gcr p11-kit
];
nativeBuildInputs = [
2018-08-10 01:04:52 +02:00
pkgconfig gettext libxslt docbook_xsl docbook_xml_dtd_43 wrapGAppsHook
2018-08-08 20:25:45 +02:00
];
configureFlags = [
2019-02-06 23:55:26 +01:00
"--with-pkcs11-config=${placeholder ''out''}/etc/pkcs11/" # installation directories
"--with-pkcs11-modules=${placeholder ''out''}/lib/pkcs11/"
];
postPatch = ''
patchShebangs build
'';
# Tends to fail non-deterministically.
# - https://github.com/NixOS/nixpkgs/issues/55293
# - https://github.com/NixOS/nixpkgs/issues/51121
doCheck = false;
2018-08-08 20:25:45 +02:00
# In 3.20.1, tests do not support Python 3
checkInputs = [ dbus python2 ];
checkPhase = ''
export HOME=$(mktemp -d)
dbus-run-session \
--config-file=${dbus.daemon}/share/dbus-1/session.conf \
make check
'';
2018-08-10 01:04:52 +02:00
passthru = {
updateScript = gnome3.updateScript {
packageName = "gnome-keyring";
attrPath = "gnome3.gnome-keyring";
};
};
meta = with stdenv.lib; {
description = "Collection of components in GNOME that store secrets, passwords, keys, certificates and make them available to applications";
homepage = https://wiki.gnome.org/Projects/GnomeKeyring;
license = licenses.gpl2;
maintainers = gnome3.maintainers;
platforms = platforms.linux;
};
}