1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 05:31:22 +00:00
nixpkgs/pkgs/tools/security/fprintd/default.nix

26 lines
933 B
Nix
Raw Normal View History

2015-03-29 03:05:14 +01: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}";
2018-12-14 18:13:35 +00:00
version = "0.8.1";
2015-01-03 16:46:09 +00:00
2015-03-29 03:05:14 +01: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 = [ libfprint glib dbus-glib polkit nss pam systemd ];
2015-03-29 03:05:14 +01: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 ];
};
}