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