libfprint-tod: init at 1.90.7+tod1
This commit is contained in:
parent
b9753491a3
commit
76558714f3
40
pkgs/development/libraries/libfprint-tod/default.nix
Normal file
40
pkgs/development/libraries/libfprint-tod/default.nix
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
{ lib
|
||||||
|
, libfprint
|
||||||
|
, fetchFromGitLab
|
||||||
|
}:
|
||||||
|
|
||||||
|
# for the curious, "tod" means "Touch OEM Drivers" meaning it can load
|
||||||
|
# external .so's.
|
||||||
|
libfprint.overrideAttrs ({ postPatch ? "", mesonFlags ? [], ... }: let
|
||||||
|
version = "1.90.7+git20210222+tod1";
|
||||||
|
in {
|
||||||
|
pname = "libfprint-tod";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
domain = "gitlab.freedesktop.org";
|
||||||
|
owner = "3v1n0";
|
||||||
|
repo = "libfprint";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0cj7iy5799pchyzqqncpkhibkq012g3bdpn18pfb19nm43svhn4j";
|
||||||
|
};
|
||||||
|
|
||||||
|
mesonFlags = mesonFlags ++ [
|
||||||
|
"-Dudev_hwdb_dir=${placeholder "out"}/lib/udev/hwdb.d"
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
${postPatch}
|
||||||
|
patchShebangs ./tests/*.py ./tests/*.sh
|
||||||
|
'';
|
||||||
|
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://gitlab.freedesktop.org/3v1n0/libfprint";
|
||||||
|
description = "A library designed to make it easy to add support for consumer fingerprint readers, with support for loaded drivers";
|
||||||
|
license = licenses.lgpl21;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ grahamc ];
|
||||||
|
};
|
||||||
|
})
|
@ -15226,6 +15226,8 @@ in
|
|||||||
|
|
||||||
libfprint = callPackage ../development/libraries/libfprint { };
|
libfprint = callPackage ../development/libraries/libfprint { };
|
||||||
|
|
||||||
|
libfprint-tod = callPackage ../development/libraries/libfprint-tod { };
|
||||||
|
|
||||||
libfpx = callPackage ../development/libraries/libfpx { };
|
libfpx = callPackage ../development/libraries/libfpx { };
|
||||||
|
|
||||||
libgadu = callPackage ../development/libraries/libgadu { };
|
libgadu = callPackage ../development/libraries/libgadu { };
|
||||||
|
Loading…
Reference in New Issue
Block a user