depot/third_party/nixpkgs/pkgs/development/libraries/gcr/4.nix
Luke Granger-Brown f92e137cfb
Some checks failed
/ combine-systems (push) Blocked by required conditions
/ build (x86_64-linux) (push) Failing after 11m44s
/ build (aarch64-linux) (push) Failing after 11m50s
/ build (push) Failing after 16m42s
Merge commit '1e2ed035f4bebc9adad02b365508ad96f7df87c1' into HEAD
2025-03-02 02:23:32 +00:00

128 lines
2.5 KiB
Nix

{
stdenv,
lib,
fetchurl,
pkg-config,
meson,
ninja,
gettext,
gnupg,
p11-kit,
glib,
libgcrypt,
libtasn1,
gtk4,
pango,
libsecret,
openssh,
systemd,
gobject-introspection,
wrapGAppsHook4,
vala,
gi-docgen,
gnome,
python3,
shared-mime-info,
systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "gcr";
version = "4.3.1";
outputs = [
"out"
"bin"
"dev"
"devdoc"
];
src = fetchurl {
url = "mirror://gnome/sources/gcr/${lib.versions.majorMinor finalAttrs.version}/gcr-${finalAttrs.version}.tar.xz";
hash = "sha256-svBw//GEDu9wVGoovoAjVCfBFqrcWTtbaMzIab46oJ0=";
};
strictDeps = true;
nativeBuildInputs = [
pkg-config
meson
ninja
gettext
gobject-introspection
gi-docgen
wrapGAppsHook4
vala
gi-docgen
shared-mime-info
];
buildInputs =
[
libgcrypt
libtasn1
pango
libsecret
openssh
gtk4
]
++ lib.optionals systemdSupport [
systemd
];
propagatedBuildInputs = [
glib
p11-kit
];
nativeCheckInputs = [
python3
];
mesonFlags = [
# We are still using ssh-agent from gnome-keyring.
# https://github.com/NixOS/nixpkgs/issues/140824
"-Dssh_agent=false"
"-Dgpg_path=${lib.getBin gnupg}/bin/gpg"
(lib.mesonEnable "systemd" systemdSupport)
];
doCheck = false; # fails 21 out of 603 tests, needs dbus daemon
PKG_CONFIG_SYSTEMD_SYSTEMDUSERUNITDIR = "${placeholder "out"}/lib/systemd/user";
postPatch = ''
patchShebangs gcr/fixtures/
'';
postFixup = ''
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
moveToOutput "share/doc" "$devdoc"
'';
passthru = {
updateScript = gnome.updateScript {
attrPath = "gcr_4";
packageName = "gcr";
versionPolicy = "ninety-micro-unstable";
};
};
meta = with lib; {
platforms = platforms.unix;
maintainers = teams.gnome.members;
description = "GNOME crypto services (daemon and tools)";
mainProgram = "gcr-viewer-gtk4";
homepage = "https://gitlab.gnome.org/GNOME/gcr";
license = licenses.lgpl2Plus;
longDescription = ''
GCR is a library for displaying certificates, and crypto UI, accessing
key stores. It also provides the viewer for crypto files on the GNOME
desktop.
GCK is a library for accessing PKCS#11 modules like smart cards, in a
(G)object oriented way.
'';
};
})