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

26 lines
872 B
Nix
Raw Normal View History

2015-03-29 02:05:14 +00:00
{ stdenv, fetchurl, pkgconfig, intltool
, libfprint, glib, dbus-glib, polkit, nss, pam, systemd }:
2015-01-03 16:46:09 +00:00
stdenv.mkDerivation rec {
2016-11-23 15:08:24 +00:00
name = "fprintd-${version}";
version = "0.8.0";
2015-01-03 16:46:09 +00:00
2015-03-29 02:05:14 +00:00
src = fetchurl {
url = "http://people.freedesktop.org/~hadess/${name}.tar.xz";
sha256 = "00i21ycaya4x2qf94mys6s94xnbj5cfm8zhhd5sc91lvqjk4r99k";
2015-01-03 16:46:09 +00:00
};
buildInputs = [ libfprint glib dbus-glib polkit nss pam systemd ];
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" ];
meta = with stdenv.lib; {
homepage = http://www.freedesktop.org/wiki/Software/fprint/fprintd/;
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 ];
};
}