nixpkgs/pkgs/development/libraries/gcr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

122 lines
2.4 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, fetchurl
, pkg-config
2020-02-08 23:22:29 +00:00
, meson
, ninja
, gettext
, gnupg
, p11-kit
, glib
, libgcrypt
, libtasn1
, gtk3
, pango
2021-10-01 23:26:20 +00:00
, libsecret
, openssh
, systemd
, gobject-introspection
, wrapGAppsHook
, gi-docgen
, vala
, gnome
, python3
2020-02-08 23:22:29 +00:00
, shared-mime-info
}:
stdenv.mkDerivation rec {
2018-12-25 22:41:02 +00:00
pname = "gcr";
version = "3.41.1";
2021-10-01 23:26:20 +00:00
outputs = [ "out" "dev" "devdoc" ];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "u3Eoo8L+u/7pwDuQ131JjQzrI3sHiYAtYBhcccS+ok8=";
};
nativeBuildInputs = [
pkg-config
2020-02-08 23:22:29 +00:00
meson
python3
ninja
gettext
gobject-introspection
gi-docgen
wrapGAppsHook
vala
2020-02-08 23:22:29 +00:00
shared-mime-info
2022-08-06 22:48:42 +00:00
gnupg
openssh
];
buildInputs = [
libgcrypt
libtasn1
pango
2021-10-01 23:26:20 +00:00
libsecret
openssh
2022-08-18 23:02:17 +00:00
] ++ lib.optionals stdenv.isLinux [
2021-10-01 23:26:20 +00:00
systemd
];
propagatedBuildInputs = [
glib
gtk3
p11-kit
];
nativeCheckInputs = [
python3
];
2020-02-08 23:22:29 +00:00
mesonFlags = [
2021-10-01 23:26:20 +00:00
# We are still using ssh-agent from gnome-keyring.
# https://github.com/NixOS/nixpkgs/issues/140824
"-Dssh_agent=false"
2022-08-18 23:02:17 +00:00
] ++ lib.optionals (!stdenv.isLinux) [
"-Dsystemd=disabled"
2020-02-08 23:22:29 +00:00
];
doCheck = false; # fails 21 out of 603 tests, needs dbus daemon
2021-10-01 23:26:20 +00:00
PKG_CONFIG_SYSTEMD_SYSTEMDUSERUNITDIR = "${placeholder "out"}/lib/systemd/user";
postPatch = ''
patchShebangs gcr/fixtures/
2021-10-01 23:26:20 +00:00
chmod +x meson_post_install.py
patchShebangs meson_post_install.py
2022-08-18 23:02:17 +00:00
substituteInPlace meson_post_install.py --replace ".so" "${stdenv.hostPlatform.extensions.sharedLibrary}"
2021-10-01 23:26:20 +00:00
'';
postFixup = ''
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
moveToOutput "share/doc" "$devdoc"
'';
passthru = {
updateScript = gnome.updateScript {
packageName = pname;
freeze = true;
};
};
meta = with lib; {
2021-05-11 04:41:09 +00:00
platforms = platforms.unix;
maintainers = teams.gnome.members;
2019-07-14 11:17:57 +00:00
description = "GNOME crypto services (daemon and tools)";
homepage = "https://gitlab.gnome.org/GNOME/gcr";
license = licenses.lgpl2Plus;
2019-07-14 11:17:57 +00:00
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.
'';
};
}