mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 21:04:30 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ 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 = [
|
|
# Include virtual drivers for fprintd tests
|
|
"-Ddrivers=all"
|
|
"-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 = "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 ];
|
|
};
|
|
})
|