neard: init at 0.15-post-git-20510929
This commit is contained in:
parent
c6de42d4d4
commit
8d7fba9b65
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, fetchgit, autoreconfHook, pkgconfig, systemd, glib, dbus, libnl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "neard-0.15-post-git-20510929";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.kernel.org/pub/scm/network/nfc/neard.git";
|
||||
sha256 = "08327b536ad8460a08bdceeec48c561e75ca56e5e0ee034c40d02cd1545906c0";
|
||||
};
|
||||
|
||||
buildInputs = [ autoreconfHook pkgconfig systemd glib dbus libnl ];
|
||||
|
||||
configureFlags = [ "--disable-debug" "--enable-tools" "--with-systemdsystemunitdir=$out/lib/systemd/system" ];
|
||||
|
||||
postInstall = ''
|
||||
install -D -m644 src/neard.service $out/lib/systemd/system/neard.service
|
||||
install -D -m644 src/main.conf $out/etc/neard/main.conf
|
||||
'';
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -9042,6 +9042,8 @@ let
|
|||
|
||||
myserver = callPackage ../servers/http/myserver { };
|
||||
|
||||
neard = callPackage ../servers/neard { };
|
||||
|
||||
nginx = callPackage ../servers/http/nginx {
|
||||
rtmp = true;
|
||||
fullWebDAV = true;
|
||||
|
|
Loading…
Reference in New Issue