summary refs log tree commit diff
path: root/pkgs/development/libraries/libfprint
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2015-03-29 05:02:42 +0300
committerNikolay Amiantov <ab@fmap.me>2015-03-29 13:05:27 +0300
commitaa652e09d2de775036041d485212ed6a47b52b89 (patch)
tree3c964bd5f39c442e1931c52a86fb7de6ab11ceb3 /pkgs/development/libraries/libfprint
parent731a4019d0e3ff67974a5a5f295ff7ea6f2c00e5 (diff)
downloadnixlib-aa652e09d2de775036041d485212ed6a47b52b89.tar
nixlib-aa652e09d2de775036041d485212ed6a47b52b89.tar.gz
nixlib-aa652e09d2de775036041d485212ed6a47b52b89.tar.bz2
nixlib-aa652e09d2de775036041d485212ed6a47b52b89.tar.lz
nixlib-aa652e09d2de775036041d485212ed6a47b52b89.tar.xz
nixlib-aa652e09d2de775036041d485212ed6a47b52b89.tar.zst
nixlib-aa652e09d2de775036041d485212ed6a47b52b89.zip
libfprint: update, remove git version
Diffstat (limited to 'pkgs/development/libraries/libfprint')
-rw-r--r--pkgs/development/libraries/libfprint/default.nix8
-rw-r--r--pkgs/development/libraries/libfprint/master.nix26
2 files changed, 4 insertions, 30 deletions
diff --git a/pkgs/development/libraries/libfprint/default.nix b/pkgs/development/libraries/libfprint/default.nix
index ffbed7945997..aad6214f2d4f 100644
--- a/pkgs/development/libraries/libfprint/default.nix
+++ b/pkgs/development/libraries/libfprint/default.nix
@@ -1,14 +1,14 @@
-{ stdenv, fetchurl, pkgconfig, libusb, glib, nss, nspr, gdk_pixbuf }:
+{ stdenv, fetchurl, pkgconfig, libusb, pixman, glib, nss, nspr, gdk_pixbuf }:
 
 stdenv.mkDerivation rec {
-  name = "libfprint-0.5.1";
+  name = "libfprint-0.6.0";
 
   src = fetchurl {
     url = "http://people.freedesktop.org/~hadess/${name}.tar.xz";
-    sha256 = "1cwgaswqcvvbclahk2m2qr09k7lf7l8jwvgf3svq92w8j4xmc4kd";
+    sha256 = "1giwh2z63mn45galsjb59rhyrvgwcy01hvvp4g01iaa2snvzr0r5";
   };
 
-  buildInputs = [ libusb glib nss nspr gdk_pixbuf ];
+  buildInputs = [ libusb pixman glib nss nspr gdk_pixbuf ];
   nativeBuildInputs = [ pkgconfig ];
 
   configureFlags = [ "--with-udev-rules-dir=$(out)/lib/udev/rules.d" ];
diff --git a/pkgs/development/libraries/libfprint/master.nix b/pkgs/development/libraries/libfprint/master.nix
deleted file mode 100644
index 06d033d0c029..000000000000
--- a/pkgs/development/libraries/libfprint/master.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ stdenv, fetchgit, libtool, autoconf, automake113x, pkgconfig, libusb, glib, nss, nspr, pixman }:
-
-stdenv.mkDerivation rec {
-  name = "libfprint";
-
-  src = fetchgit {
-    url = "git://anongit.freedesktop.org/libfprint/libfprint";
-    rev = "a3c90f2b24434aa36f782aca3950fd89af01fce0";
-    sha256 = "01qa58vq299xzxzxrcqkl51k8396wh56674d9wjmkv2msxx877hi";
-  };
-
-  buildInputs = [ libusb glib nss nspr pixman ];
-  nativeBuildInputs = [ libtool autoconf automake113x pkgconfig ];
-
-  configureScript = "./autogen.sh";
-
-  configureFlags = [ "--prefix=$(out)" "--disable-examples-build" "--disable-x11-examples-build" "--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 ];
-  };
-}