From 26f6c15a42e8015a5332925719f45c8992a2fc9c Mon Sep 17 00:00:00 2001 From: gnidorah Date: Fri, 14 Dec 2018 21:13:35 +0300 Subject: [PATCH] fprintd: 0.8.0 -> 0.8.1 --- pkgs/tools/security/fprintd/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/security/fprintd/default.nix b/pkgs/tools/security/fprintd/default.nix index d0cf2f8091e6..65eec89a09fc 100644 --- a/pkgs/tools/security/fprintd/default.nix +++ b/pkgs/tools/security/fprintd/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "fprintd-${version}"; - version = "0.8.0"; + version = "0.8.1"; src = fetchurl { - url = "https://people.freedesktop.org/~hadess/${name}.tar.xz"; - sha256 = "00i21ycaya4x2qf94mys6s94xnbj5cfm8zhhd5sc91lvqjk4r99k"; + url = "https://gitlab.freedesktop.org/libfprint/fprintd/uploads/bdd9f91909f535368b7c21f72311704a/fprintd-${version}.tar.xz"; + sha256 = "124s0g9syvglgsmqnavp2a8c0zcq8cyaph8p8iyvbla11vfizs9l"; }; buildInputs = [ libfprint glib dbus-glib polkit nss pam systemd ]; @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-systemdsystemunitdir=$(out)/lib/systemd/system" "--localstatedir=/var" ]; meta = with stdenv.lib; { - homepage = http://www.freedesktop.org/wiki/Software/fprint/fprintd/; + homepage = https://fprint.freedesktop.org/; description = "D-Bus daemon that offers libfprint functionality over the D-Bus interprocess communication bus"; license = licenses.gpl2; platforms = platforms.linux;