mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
24 lines
795 B
Nix
24 lines
795 B
Nix
{ stdenv, fetchurl, pkgconfig, libusb, pixman, glib, nss, nspr, gdk_pixbuf }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libfprint-0.7.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://people.freedesktop.org/~anarsoul/${name}.tar.xz";
|
|
sha256 = "1wzi12zvdp8sw3w5pfbd9cwz6c71627bkr88rxv6gifbyj6fwgl6";
|
|
};
|
|
|
|
buildInputs = [ libusb pixman glib nss nspr gdk_pixbuf ];
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
configureFlags = [ "--with-udev-rules-dir=$(out)/lib/udev/rules.d" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.freedesktop.org/wiki/Software/fprint/libfprint/;
|
|
description = "A library designed to make it easy to add support for consumer fingerprint readers";
|
|
license = licenses.lgpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|