mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
93 lines
1.8 KiB
Nix
93 lines
1.8 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitLab
|
|
, pkg-config
|
|
, meson
|
|
, python3
|
|
, ninja
|
|
, gusb
|
|
, pixman
|
|
, glib
|
|
, nss
|
|
, gobject-introspection
|
|
, cairo
|
|
, libgudev
|
|
, gtk-doc
|
|
, docbook-xsl-nons
|
|
, docbook_xml_dtd_43
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libfprint";
|
|
version = "1.94.6";
|
|
outputs = [ "out" "devdoc" ];
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.freedesktop.org";
|
|
owner = "libfprint";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-lDnAXWukBZSo8X6UEVR2nOMeVUi/ahnJgx2cP+vykZ8=";
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs \
|
|
tests/test-runner.sh \
|
|
tests/unittest_inspector.py \
|
|
tests/virtual-image.py \
|
|
tests/umockdev-test.py \
|
|
tests/test-generated-hwdb.sh
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
meson
|
|
ninja
|
|
gtk-doc
|
|
docbook-xsl-nons
|
|
docbook_xml_dtd_43
|
|
gobject-introspection
|
|
];
|
|
|
|
buildInputs = [
|
|
gusb
|
|
pixman
|
|
glib
|
|
nss
|
|
cairo
|
|
libgudev
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dudev_rules_dir=${placeholder "out"}/lib/udev/rules.d"
|
|
# Include virtual drivers for fprintd tests
|
|
"-Ddrivers=all"
|
|
"-Dudev_hwdb_dir=${placeholder "out"}/lib/udev/hwdb.d"
|
|
];
|
|
|
|
nativeInstallCheckInputs = [
|
|
(python3.withPackages (p: with p; [ pygobject3 ]))
|
|
];
|
|
|
|
# We need to run tests _after_ install so all the paths that get loaded are in
|
|
# the right place.
|
|
doCheck = false;
|
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
|
|
ninjaCheckPhase
|
|
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://fprint.freedesktop.org/";
|
|
description = "Library designed to make it easy to add support for consumer fingerprint readers";
|
|
license = licenses.lgpl21Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|