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

75 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-05-19 13:03:13 +01:00
, fetchFromGitLab
, pkg-config
, meson
, python3
, ninja
2020-05-19 13:03:13 +01:00
, gusb
, pixman
, glib
, nss
2020-05-19 13:03:13 +01:00
, gobject-introspection
, coreutils
, gtk-doc
, docbook-xsl-nons
, docbook_xml_dtd_43
}:
2015-01-03 16:44:08 +00:00
stdenv.mkDerivation rec {
2020-05-19 13:03:13 +01:00
pname = "libfprint";
version = "1.90.7";
2020-05-19 13:03:13 +01:00
outputs = [ "out" "devdoc" ];
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "libfprint";
repo = pname;
rev = "v${version}";
sha256 = "sha256-g/yczzCZEzUKV2uFl1MAPL1H/R2QJSwxgppI2ftt9QI=";
2020-05-19 13:03:13 +01:00
};
nativeBuildInputs = [
pkg-config
meson
ninja
gtk-doc
docbook-xsl-nons
docbook_xml_dtd_43
2020-05-19 13:03:13 +01:00
gobject-introspection
];
2015-01-03 16:44:08 +00:00
buildInputs = [
2020-05-19 13:03:13 +01:00
gusb
pixman
glib
nss
2020-05-19 13:03:13 +01:00
];
2015-01-03 16:44:08 +00:00
checkInputs = [
python3
];
mesonFlags = [
"-Dudev_rules_dir=${placeholder "out"}/lib/udev/rules.d"
# Include virtual drivers for fprintd tests
"-Ddrivers=all"
];
2018-12-17 18:04:26 +00:00
doCheck = true;
postPatch = ''
patchShebangs \
tests/test-runner.sh \
tests/unittest_inspector.py \
tests/virtual-image.py
'';
meta = with lib; {
homepage = "https://fprint.freedesktop.org/";
2015-01-03 16:44:08 +00:00
description = "A library designed to make it easy to add support for consumer fingerprint readers";
license = licenses.lgpl21Only;
2015-01-03 16:44:08 +00:00
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
}