2015-01-03 17:46:45 +01:00
|
|
|
{ stdenv, fetchgit, autoreconfHook, pkgconfig, libfprint, gtk2 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-06-04 19:22:36 +02:00
|
|
|
name = "fprint_demo-2008-03-03";
|
2015-01-03 17:46:45 +01:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/dsd/fprint_demo";
|
|
|
|
rev = "5d86c3f778bf97a29b73bdafbebd1970e560bfb0";
|
2016-06-02 13:26:44 +02:00
|
|
|
sha256 = "1rysqd8kdqgis1ykrbkiy1bcxav3vna8zdgbamyxw4hj5764xdcm";
|
2015-01-03 17:46:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libfprint gtk2 ];
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-11 00:56:27 +01:00
|
|
|
|
2015-01-03 17:46:45 +01:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://www.freedesktop.org/wiki/Software/fprint/fprint_demo/;
|
2015-01-03 17:46:45 +01:00
|
|
|
description = "A simple GTK+ application to demonstrate and test libfprint's capabilities";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|