2021-01-11 07:54:33 +00:00
|
|
|
|
{ lib, stdenv
|
2020-05-19 13:03:31 +01:00
|
|
|
|
, fetchFromGitLab
|
2021-01-17 03:51:22 +00:00
|
|
|
|
, pkg-config
|
2021-02-11 04:12:29 +00:00
|
|
|
|
, gobject-introspection
|
2020-05-19 13:03:31 +01:00
|
|
|
|
, meson
|
|
|
|
|
, ninja
|
|
|
|
|
, perl
|
|
|
|
|
, gettext
|
|
|
|
|
, cairo
|
|
|
|
|
, gtk-doc
|
|
|
|
|
, libxslt
|
|
|
|
|
, docbook-xsl-nons
|
|
|
|
|
, docbook_xml_dtd_412
|
2021-02-11 04:12:29 +00:00
|
|
|
|
, fetchurl
|
2019-09-18 01:15:57 +01:00
|
|
|
|
, glib
|
2021-02-11 04:12:29 +00:00
|
|
|
|
, gusb
|
2020-05-19 13:03:31 +01:00
|
|
|
|
, dbus
|
2019-09-18 01:15:57 +01:00
|
|
|
|
, polkit
|
|
|
|
|
, nss
|
|
|
|
|
, pam
|
|
|
|
|
, systemd
|
2020-05-19 13:03:31 +01:00
|
|
|
|
, libfprint
|
|
|
|
|
, python3
|
2019-09-18 01:15:57 +01:00
|
|
|
|
}:
|
2015-01-03 16:46:09 +00:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-05-19 13:03:31 +01:00
|
|
|
|
pname = "fprintd";
|
2021-02-11 04:12:29 +00:00
|
|
|
|
version = "1.90.9";
|
2020-05-19 13:03:31 +01:00
|
|
|
|
outputs = [ "out" "devdoc" ];
|
2015-01-03 16:46:09 +00:00
|
|
|
|
|
2020-05-19 13:03:31 +01:00
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
|
domain = "gitlab.freedesktop.org";
|
|
|
|
|
owner = "libfprint";
|
|
|
|
|
repo = pname;
|
2021-02-11 04:12:29 +00:00
|
|
|
|
rev = "v${version}";
|
|
|
|
|
sha256 = "rOTVThHOY/Q2IIu2RGiv26UE2V/JFfWWnfKZQfKl5Mg=";
|
2015-01-03 16:46:09 +00:00
|
|
|
|
};
|
|
|
|
|
|
2019-09-18 01:15:57 +01:00
|
|
|
|
nativeBuildInputs = [
|
2021-01-17 03:51:22 +00:00
|
|
|
|
pkg-config
|
2020-05-19 13:03:31 +01:00
|
|
|
|
meson
|
|
|
|
|
ninja
|
2021-02-11 04:12:29 +00:00
|
|
|
|
perl # for pod2man
|
2020-05-19 13:03:31 +01:00
|
|
|
|
gettext
|
|
|
|
|
gtk-doc
|
|
|
|
|
libxslt
|
2021-02-11 04:12:29 +00:00
|
|
|
|
# TODO: apply this to D-Bus so that other packages can benefit.
|
|
|
|
|
# https://gitlab.freedesktop.org/dbus/dbus/-/merge_requests/202
|
|
|
|
|
(dbus.overrideAttrs (attrs: {
|
|
|
|
|
postInstall = attrs.postInstall or "" + ''
|
|
|
|
|
ln -s ${fetchurl {
|
|
|
|
|
url = "https://gitlab.freedesktop.org/dbus/dbus/-/raw/b207135dbd8c09cf8da28f7e3b0a18bb11483663/doc/catalog.xml";
|
|
|
|
|
sha256 = "1/43XwAIcmRXfM4OXOPephyQyUnW8DSveiZbiPvW72I=";
|
|
|
|
|
}} $out/share/xml/dbus-1/catalog.xml
|
|
|
|
|
'';
|
|
|
|
|
}))
|
2020-05-19 13:03:31 +01:00
|
|
|
|
docbook-xsl-nons
|
|
|
|
|
docbook_xml_dtd_412
|
2019-09-18 01:15:57 +01:00
|
|
|
|
];
|
2019-05-15 21:56:58 +01:00
|
|
|
|
|
2019-09-18 01:15:57 +01:00
|
|
|
|
buildInputs = [
|
|
|
|
|
glib
|
|
|
|
|
polkit
|
|
|
|
|
nss
|
|
|
|
|
pam
|
|
|
|
|
systemd
|
2020-05-19 13:03:31 +01:00
|
|
|
|
libfprint
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
checkInputs = with python3.pkgs; [
|
2021-02-11 04:12:29 +00:00
|
|
|
|
gobject-introspection # for setup hook
|
2020-05-19 13:03:31 +01:00
|
|
|
|
python-dbusmock
|
|
|
|
|
dbus-python
|
|
|
|
|
pygobject3
|
|
|
|
|
pycairo
|
|
|
|
|
pypamtest
|
2021-02-11 04:12:29 +00:00
|
|
|
|
gusb # Required by libfprint’s typelib
|
2020-05-19 13:03:31 +01:00
|
|
|
|
];
|
2015-01-03 16:46:09 +00:00
|
|
|
|
|
2020-05-19 13:03:31 +01:00
|
|
|
|
mesonFlags = [
|
|
|
|
|
"-Dgtk_doc=true"
|
|
|
|
|
"-Dpam_modules_dir=${placeholder "out"}/lib/security"
|
|
|
|
|
"-Dsysconfdir=${placeholder "out"}/etc"
|
|
|
|
|
"-Ddbus_service_dir=${placeholder "out"}/share/dbus-1/system-services"
|
|
|
|
|
"-Dsystemd_system_unit_dir=${placeholder "out"}/lib/systemd/system"
|
2019-05-26 14:03:48 +01:00
|
|
|
|
];
|
2015-01-03 16:46:09 +00:00
|
|
|
|
|
2020-05-19 13:03:31 +01:00
|
|
|
|
PKG_CONFIG_DBUS_1_INTERFACES_DIR = "${placeholder "out"}/share/dbus-1/interfaces";
|
|
|
|
|
PKG_CONFIG_POLKIT_GOBJECT_1_POLICYDIR = "${placeholder "out"}/share/polkit-1/actions";
|
|
|
|
|
PKG_CONFIG_DBUS_1_DATADIR = "${placeholder "out"}/share";
|
|
|
|
|
|
|
|
|
|
# FIXME: Ugly hack for tests to find libpam_wrapper.so
|
2021-01-15 09:19:50 +00:00
|
|
|
|
LIBRARY_PATH = lib.makeLibraryPath [ python3.pkgs.pypamtest ];
|
2020-05-19 13:03:31 +01:00
|
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
|
|
postPatch = ''
|
2021-02-11 04:12:29 +00:00
|
|
|
|
patchShebangs \
|
|
|
|
|
po/check-translations.sh \
|
|
|
|
|
tests/unittest_inspector.py
|
2020-05-19 13:03:31 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://fprint.freedesktop.org/";
|
2015-01-03 16:46:09 +00:00
|
|
|
|
description = "D-Bus daemon that offers libfprint functionality over the D-Bus interprocess communication bus";
|
2021-02-11 04:12:29 +00:00
|
|
|
|
license = licenses.gpl2Plus;
|
2015-01-03 16:46:09 +00:00
|
|
|
|
platforms = platforms.linux;
|
2020-05-19 13:03:31 +01:00
|
|
|
|
maintainers = with maintainers; [ abbradar elyhaka ];
|
2015-01-03 16:46:09 +00:00
|
|
|
|
};
|
|
|
|
|
}
|