nixpkgs/pkgs/tools/security/fprintd/default.nix

34 lines
1.2 KiB
Nix
Raw Normal View History

{ thinkpad ? false
, stdenv, fetchurl, pkgconfig, intltool, libfprint-thinkpad ? null
, libfprint ? null, glib, dbus-glib, polkit, nss, pam, systemd }:
2015-01-03 19:46:09 +03:00
stdenv.mkDerivation rec {
pname = "fprintd" + stdenv.lib.optionalString thinkpad "-thinkpad";
2018-12-14 21:13:35 +03:00
version = "0.8.1";
2015-01-03 19:46:09 +03:00
2015-03-29 05:05:14 +03:00
src = fetchurl {
2018-12-14 21:13:35 +03:00
url = "https://gitlab.freedesktop.org/libfprint/fprintd/uploads/bdd9f91909f535368b7c21f72311704a/fprintd-${version}.tar.xz";
sha256 = "124s0g9syvglgsmqnavp2a8c0zcq8cyaph8p8iyvbla11vfizs9l";
2015-01-03 19:46:09 +03:00
};
buildInputs = [ glib dbus-glib polkit nss pam systemd ]
++ stdenv.lib.optional thinkpad libfprint-thinkpad
++ stdenv.lib.optional (!thinkpad) libfprint;
2015-03-29 05:05:14 +03:00
nativeBuildInputs = [ pkgconfig intltool ];
2015-01-03 19:46:09 +03:00
2019-05-26 16:03:48 +03:00
configureFlags = [
"--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
"--localstatedir=/var"
"--sysconfdir=${placeholder "out"}/etc"
];
2015-01-03 19:46:09 +03:00
meta = with stdenv.lib; {
2018-12-14 21:13:35 +03:00
homepage = https://fprint.freedesktop.org/;
2015-01-03 19:46:09 +03:00
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 ];
};
}