fprintd: backport patch to fix tests

This commit is contained in:
K900 2022-07-25 18:01:05 +03:00
parent ded08eff9c
commit 3b6588277b

View file

@ -1,5 +1,6 @@
{ lib, stdenv
, fetchFromGitLab
, fetchpatch
, pkg-config
, gobject-introspection
, meson
@ -36,6 +37,14 @@ stdenv.mkDerivation rec {
sha256 = "sha256-ePhcIZyXoGr8XlBuzKjpibU9D/44iCXYBlpVR9gcswQ=";
};
patches = [
# backport upstream patch fixing tests
(fetchpatch {
url = "https://gitlab.freedesktop.org/libfprint/fprintd/-/commit/ae04fa989720279e5558c3b8ff9ebe1959b1cf36.patch";
sha256 = "sha256-jW5vlzrbZQ1gUDLBf7G50GnZfZxhlnL2Eu+9Bghdwdw=";
})
];
nativeBuildInputs = [
pkg-config
meson