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

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