nixpkgs/pkgs/servers/neard/default.nix

40 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, systemd, glib, dbus, libnl, python2Packages }:
2015-09-29 14:24:20 +00:00
stdenv.mkDerivation rec {
pname = "neard";
version = "0.16";
2015-09-29 14:24:20 +00:00
2017-12-05 22:05:21 +00:00
src = fetchurl {
url = "https://git.kernel.org/pub/scm/network/nfc/neard.git/snapshot/neard-${version}.tar.gz";
2017-12-05 22:05:21 +00:00
sha256 = "0bpdmyxvd3z54p95apz4bjb5jp8hbc04sicjapcryjwa8mh6pbil";
2015-09-29 14:24:20 +00:00
};
nativeBuildInputs = [ autoreconfHook pkg-config python2Packages.wrapPython ];
buildInputs = [ systemd glib dbus libnl ] ++ (with python2Packages; [ python ]);
pythonPath = with python2Packages; [ pygobject2 dbus-python pygtk ];
strictDeps = true;
2015-09-29 14:24:20 +00:00
configureFlags = [ "--disable-debug" "--enable-tools" "--enable-ese" "--with-systemdsystemunitdir=$out/lib/systemd/system" ];
2015-09-29 14:24:20 +00:00
postInstall = ''
2015-09-30 14:08:32 +00:00
install -m 0755 tools/snep-send $out/bin/
2015-09-29 14:24:20 +00: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 14:08:32 +00:00
# INFO: the config option "--enable-test" would copy the apps to $out/lib/neard/test/ instead
2015-09-30 14:08:32 +00:00
install -d $out/lib/neard
install -m 0755 test/* $out/lib/neard/
wrapPythonProgramsIn $out/lib/neard "$out $pythonPath"
2015-09-29 14:24:20 +00:00
'';
meta = with lib; {
2015-09-29 14:24:20 +00:00
description = "Near Field Communication manager";
homepage = "https://01.org/linux-nfc";
2015-09-29 14:24:20 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ tstrobel ];
platforms = platforms.unix;
};
}