mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
fprintd: update
This commit is contained in:
parent
9ed21f3a49
commit
cb7eeca147
@ -1,19 +1,16 @@
|
||||
{ stdenv, fetchgit, automake, autoconf, libtool, pkgconfig, gtk_doc
|
||||
, libfprint, intltool, glib, dbus_glib, polkit, nss, pam, systemd }:
|
||||
{ stdenv, fetchurl, pkgconfig, intltool
|
||||
, libfprint, glib, dbus_glib, polkit, nss, pam, systemd }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "fprintd";
|
||||
name = "fprintd-0.6.0";
|
||||
|
||||
src = fetchgit {
|
||||
url = "git://anongit.freedesktop.org/libfprint/fprintd";
|
||||
rev = "f7c51b0d585eb63702f0d005081e53f44325df86";
|
||||
sha256 = "1gmnn72ablfxvv13s0rms5f39hc4y2z97aq44d7l9hblnfn6wq12";
|
||||
src = fetchurl {
|
||||
url = "http://people.freedesktop.org/~hadess/${name}.tar.xz";
|
||||
sha256 = "1by6nvlrqkwzcz2v2kyq6avi3h384vmlr42vj9s2yzcinkp64m1z";
|
||||
};
|
||||
|
||||
buildInputs = [ libfprint glib dbus_glib polkit nss pam systemd ];
|
||||
nativeBuildInputs = [ automake libtool autoconf gtk_doc pkgconfig intltool ];
|
||||
|
||||
configureScript = "./autogen.sh";
|
||||
nativeBuildInputs = [ pkgconfig intltool ];
|
||||
|
||||
configureFlags = [ "--with-systemdsystemunitdir=$(out)/lib/systemd/system" ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user