summaryrefslogtreecommitdiffstats
path: root/pkgs/tools
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-11-21 12:01:20 +0000
committerGitHub <noreply@github.com>2021-11-21 12:01:20 +0000
commitc68c4b3db87877e2ae520ffea2583ae35a0cb04d (patch)
tree973c14b0253c5f5c65d73cda192e3a06e90a9279 /pkgs/tools
parent6ad93ecdbb115566d66b7a04b914e7ac3d780cd9 (diff)
parent28e1b1a50a22fd6f155a10fb8e0d50b126774890 (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/fprintd/tod.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/tools/security/fprintd/tod.nix b/pkgs/tools/security/fprintd/tod.nix
new file mode 100644
index 000000000000..4900124f8d19
--- /dev/null
+++ b/pkgs/tools/security/fprintd/tod.nix
@@ -0,0 +1,21 @@
+{ fetchFromGitLab
+, fprintd
+, libfprint-tod
+}:
+
+(fprintd.override { libfprint = libfprint-tod; }).overrideAttrs (oldAttrs:
+ let
+ pname = "fprintd-tod";
+ version = "1.90.9";
+ in
+ {
+ inherit pname version;
+
+ src = fetchFromGitLab {
+ domain = "gitlab.freedesktop.org";
+ owner = "libfprint";
+ repo = "${oldAttrs.pname}";
+ rev = "v${version}";
+ sha256 = "sha256-rOTVThHOY/Q2IIu2RGiv26UE2V/JFfWWnfKZQfKl5Mg=";
+ };
+ })