at 18.03-beta 23 lines 795 B view raw
1{ stdenv, fetchurl, pkgconfig, libusb, pixman, glib, nss, nspr, gdk_pixbuf }: 2 3stdenv.mkDerivation rec { 4 name = "libfprint-0.7.0"; 5 6 src = fetchurl { 7 url = "https://people.freedesktop.org/~anarsoul/${name}.tar.xz"; 8 sha256 = "1wzi12zvdp8sw3w5pfbd9cwz6c71627bkr88rxv6gifbyj6fwgl6"; 9 }; 10 11 buildInputs = [ libusb pixman glib nss nspr gdk_pixbuf ]; 12 nativeBuildInputs = [ pkgconfig ]; 13 14 configureFlags = [ "--with-udev-rules-dir=$(out)/lib/udev/rules.d" ]; 15 16 meta = with stdenv.lib; { 17 homepage = http://www.freedesktop.org/wiki/Software/fprint/libfprint/; 18 description = "A library designed to make it easy to add support for consumer fingerprint readers"; 19 license = licenses.lgpl2; 20 platforms = platforms.linux; 21 maintainers = with maintainers; [ abbradar ]; 22 }; 23}