summary refs log tree commit diff
path: root/pkgs/tools/security/fprintd/default.nix
blob: 41a00306f6953199c8080b5e2948e141430c84c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{ thinkpad ? false
, stdenv
, fetchurl
, fetchpatch
, pkgconfig
, intltool
, libfprint-thinkpad ? null
, libfprint ? null
, glib
, dbus-glib
, polkit
, nss
, pam
, systemd
, autoreconfHook
, gtk-doc
}:

stdenv.mkDerivation rec {
  pname = "fprintd" + stdenv.lib.optionalString thinkpad "-thinkpad";
  version = "0.9.0";

  src = fetchurl {
    url = "https://gitlab.freedesktop.org/libfprint/fprintd/uploads/9dec4b63d1f00e637070be1477ce63c0/fprintd-${version}.tar.xz";
    sha256 = "182gcnwb6zjwmk0dn562rjmpbk7ac7dhipbfdhfic2sn1jzis49p";
  };

  patches = [
    (fetchpatch {
      url = "https://gitlab.freedesktop.org/libfprint/fprintd/merge_requests/16.patch";
      sha256 = "1y39zsmxjll9hip8464qwhq5qg06c13pnafyafgxdph75lvhdll7";
    })
  ];

  nativeBuildInputs = [
    intltool
    pkgconfig
    autoreconfHook # Drop with above patch
    gtk-doc # Drop with above patch
  ];

  buildInputs = [
    glib
    dbus-glib
    polkit
    nss
    pam
    systemd
  ]
  ++ stdenv.lib.optional thinkpad libfprint-thinkpad
  ++ stdenv.lib.optional (!thinkpad) libfprint
  ;

  configureFlags = [
    # is hardcoded to /var/lib/fprint, this is for the StateDirectory install target
    "--localstatedir=${placeholder "out"}/var"
    "--sysconfdir=${placeholder "out"}/etc"
    "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
  ];

  meta = with stdenv.lib; {
    homepage = https://fprint.freedesktop.org/;
    description = "D-Bus daemon that offers libfprint functionality over the D-Bus interprocess communication bus";
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ abbradar ];
  };
}