2015-09-30 15:08:32 +01:00
|
|
|
{ stdenv, fetchgit, autoreconfHook, pkgconfig, systemd, glib, dbus, libnl, pythonPackages }:
|
2015-09-29 15:24:20 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "neard-0.15-post-git-20510929";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://git.kernel.org/pub/scm/network/nfc/neard.git";
|
2016-06-02 12:26:44 +01:00
|
|
|
sha256 = "07dny1l8n46v0yn30zqa8bkyj8ay01xphc124nhf2sqwbff7nf2m";
|
2015-09-29 15:24:20 +01:00
|
|
|
};
|
|
|
|
|
2015-09-30 15:08:32 +01:00
|
|
|
buildInputs = [ autoreconfHook pkgconfig systemd glib dbus libnl pythonPackages.python pythonPackages.wrapPython ];
|
2016-09-11 22:24:51 +01:00
|
|
|
pythonPath = [ pythonPackages.pygobject2 pythonPackages.dbus-python pythonPackages.pygtk ];
|
2015-09-29 15:24:20 +01:00
|
|
|
|
2015-10-01 13:23:22 +01:00
|
|
|
configureFlags = [ "--disable-debug" "--enable-tools" "--enable-ese" "--with-systemdsystemunitdir=$out/lib/systemd/system" ];
|
2015-09-29 15:24:20 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
2015-09-30 15:08:32 +01:00
|
|
|
install -m 0755 tools/snep-send $out/bin/
|
|
|
|
|
2015-09-29 15:24:20 +01:00
|
|
|
install -D -m644 src/neard.service $out/lib/systemd/system/neard.service
|
|
|
|
install -D -m644 src/main.conf $out/etc/neard/main.conf
|
2015-09-30 15:08:32 +01:00
|
|
|
|
2015-10-01 13:23:22 +01:00
|
|
|
# INFO: the config option "--enable-test" would copy the apps to $out/lib/neard/test/ instead
|
2015-09-30 15:08:32 +01:00
|
|
|
install -d $out/lib/neard
|
|
|
|
install -m 0755 test/* $out/lib/neard/
|
|
|
|
wrapPythonProgramsIn $out/lib/neard "$out $pythonPath"
|
2015-09-29 15:24:20 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Near Field Communication manager";
|
|
|
|
homepage = https://01.org/linux-nfc;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ tstrobel ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|