mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
Merge pull request #146737 from ymatsiuk/fprintd
fprintd-tod: fix the build
This commit is contained in:
commit
8aec79b615
21
pkgs/tools/security/fprintd/tod.nix
Normal file
21
pkgs/tools/security/fprintd/tod.nix
Normal file
@ -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=";
|
||||
};
|
||||
})
|
@ -5305,9 +5305,7 @@ with pkgs;
|
||||
|
||||
fprintd = callPackage ../tools/security/fprintd { };
|
||||
|
||||
fprintd-tod = callPackage ../tools/security/fprintd {
|
||||
libfprint = libfprint-tod;
|
||||
};
|
||||
fprintd-tod = callPackage ../tools/security/fprintd/tod.nix { };
|
||||
|
||||
ferdi = callPackage ../applications/networking/instant-messengers/ferdi {
|
||||
mkFranzDerivation = callPackage ../applications/networking/instant-messengers/franz/generic.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user