tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
fprintd: backport patch to fix tests
K900
3 years ago
3b658827
ded08eff
+9
1 changed file
expand all
collapse all
unified
split
pkgs
tools
security
fprintd
default.nix
+9
pkgs/tools/security/fprintd/default.nix
reviewed
···
1
1
{ lib, stdenv
2
2
, fetchFromGitLab
3
3
+
, fetchpatch
3
4
, pkg-config
4
5
, gobject-introspection
5
6
, meson
···
35
36
rev = "v${version}";
36
37
sha256 = "sha256-ePhcIZyXoGr8XlBuzKjpibU9D/44iCXYBlpVR9gcswQ=";
37
38
};
39
39
+
40
40
+
patches = [
41
41
+
# backport upstream patch fixing tests
42
42
+
(fetchpatch {
43
43
+
url = "https://gitlab.freedesktop.org/libfprint/fprintd/-/commit/ae04fa989720279e5558c3b8ff9ebe1959b1cf36.patch";
44
44
+
sha256 = "sha256-jW5vlzrbZQ1gUDLBf7G50GnZfZxhlnL2Eu+9Bghdwdw=";
45
45
+
})
46
46
+
];
38
47
39
48
nativeBuildInputs = [
40
49
pkg-config