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

28 lines
1,000 B
Nix
Raw Normal View History

2015-02-02 17:26:14 +00:00
{ stdenv, fetchgit, automake, autoconf, libtool, pkgconfig, gtk_doc
, libfprint, intltool, glib, dbus_glib, polkit, nss, pam, systemd }:
2015-01-03 16:46:09 +00:00
stdenv.mkDerivation rec {
2015-02-02 17:26:14 +00:00
name = "fprintd";
2015-01-03 16:46:09 +00:00
2015-02-02 17:26:14 +00:00
src = fetchgit {
url = "git://anongit.freedesktop.org/libfprint/fprintd";
rev = "f7c51b0d585eb63702f0d005081e53f44325df86";
sha256 = "1gmnn72ablfxvv13s0rms5f39hc4y2z97aq44d7l9hblnfn6wq12";
2015-01-03 16:46:09 +00:00
};
buildInputs = [ libfprint glib dbus_glib polkit nss pam systemd ];
2015-02-02 17:26:14 +00:00
nativeBuildInputs = [ automake libtool autoconf gtk_doc pkgconfig intltool ];
configureScript = "./autogen.sh";
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/";
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 ];
};
}