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

106 lines
1.9 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchurl
, pkg-config
2020-02-09 00:22:29 +01:00
, meson
, ninja
, gettext
, gnupg
, p11-kit
, glib
, libgcrypt
, libtasn1
, gtk3
, pango
, gobject-introspection
, makeWrapper
, libxslt
, vala
, gnome
, python3
2020-02-09 00:22:29 +01:00
, shared-mime-info
}:
stdenv.mkDerivation rec {
2018-12-25 23:41:02 +01:00
pname = "gcr";
2021-03-30 17:17:15 +02:00
version = "3.40.0";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2021-03-30 17:17:15 +02:00
sha256 = "udNkWl/ZU6VChcxk1PwEZzZGPb1NzCXK9ce1m+0wJ/U=";
};
postPatch = ''
patchShebangs build/ gcr/fixtures/
2020-02-09 00:22:29 +01:00
chmod +x meson_post_install.py
patchShebangs meson_post_install.py
'';
2017-09-27 11:25:50 +02:00
outputs = [ "out" "dev" ];
nativeBuildInputs = [
pkg-config
2020-02-09 00:22:29 +01:00
meson
python3
ninja
gettext
gobject-introspection
libxslt
makeWrapper
vala
2020-02-09 00:22:29 +01:00
shared-mime-info
];
buildInputs = [
gnupg
libgcrypt
libtasn1
pango
];
propagatedBuildInputs = [
glib
gtk3
p11-kit
];
checkInputs = [
python3
];
2020-02-09 00:22:29 +01:00
mesonFlags = [
"-Dgtk_doc=false"
];
doCheck = false; # fails 21 out of 603 tests, needs dbus daemon
preFixup = ''
wrapProgram "$out/bin/gcr-viewer" \
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
'';
passthru = {
updateScript = gnome.updateScript {
packageName = pname;
versionPolicy = "odd-unstable";
};
};
meta = with lib; {
2021-05-11 06:41:09 +02:00
platforms = platforms.unix;
maintainers = teams.gnome.members;
2019-07-14 13:17:57 +02:00
description = "GNOME crypto services (daemon and tools)";
homepage = "https://gitlab.gnome.org/GNOME/gcr";
license = licenses.lgpl2Plus;
2019-07-14 13:17:57 +02: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.
'';
};
}