forked from mirrors/nixpkgs
commit
bb4a33ec91
|
@ -1,21 +1,46 @@
|
|||
{ stdenv, fetchgit, autoreconfHook, pkgconfig }:
|
||||
{ stdenv
|
||||
, fetchgit
|
||||
, autoreconfHook
|
||||
, pkgconfig
|
||||
, dbus
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ell";
|
||||
version = "0.20";
|
||||
version = "0.21";
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
src = fetchgit {
|
||||
url = https://git.kernel.org/pub/scm/libs/ell/ell.git;
|
||||
url = "https://git.kernel.org/pub/scm/libs/${pname}/${pname}.git";
|
||||
rev = version;
|
||||
sha256 = "1g143dbc7cfks63k9yi2m8hpgfp9jj5b56s3hyxjzxm9dac3yn6c";
|
||||
sha256 = "0m7fk2xgzsz7am0wjw98sqa42zpw3cz3hz399niw5rj8dbqh0zpy";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
patches = [
|
||||
./fix-dbus-tests.patch
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkgconfig
|
||||
autoreconfHook
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
dbus
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://git.kernel.org/pub/scm/libs/ell/ell.git;
|
||||
homepage = https://01.org/ell;
|
||||
description = "Embedded Linux Library";
|
||||
license = licenses.lgpl21;
|
||||
longDescription = ''
|
||||
The Embedded Linux* Library (ELL) provides core, low-level functionality for system daemons. It typically has no dependencies other than the Linux kernel, C standard library, and libdl (for dynamic linking). While ELL is designed to be efficient and compact enough for use on embedded Linux platforms, it is not limited to resource-constrained systems.
|
||||
'';
|
||||
license = licenses.lgpl21Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ mic92 dtzWill ];
|
||||
};
|
||||
|
|
65
pkgs/os-specific/linux/ell/fix-dbus-tests.patch
Normal file
65
pkgs/os-specific/linux/ell/fix-dbus-tests.patch
Normal file
|
@ -0,0 +1,65 @@
|
|||
--- a/Makefile.am
|
||||
+++ b/Makefile.am
|
||||
@@ -140,6 +140,7 @@
|
||||
ell_libell_private_la_SOURCES = $(ell_libell_la_SOURCES)
|
||||
|
||||
AM_CFLAGS = -fvisibility=hidden -DUNITDIR=\""$(top_srcdir)/unit/"\" \
|
||||
+ -DDBUS_DAEMON=\""$(DBUS_DAEMONDIR)/dbus-daemon"\" \
|
||||
-DCERTDIR=\""$(top_builddir)/unit/"\"
|
||||
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -14,6 +14,8 @@
|
||||
|
||||
AC_PREFIX_DEFAULT(/usr/local)
|
||||
|
||||
+PKG_PROG_PKG_CONFIG
|
||||
+
|
||||
COMPILER_FLAGS
|
||||
|
||||
AC_LANG_C
|
||||
@@ -131,6 +133,10 @@
|
||||
AC_CHECK_PROG(have_xxd, [xxd], [yes], [no])
|
||||
fi
|
||||
|
||||
+PKG_CHECK_MODULES(DBUS, dbus-1, dummy=yes,
|
||||
+ AC_MSG_ERROR(D-Bus is required for running tests))
|
||||
+PKG_CHECK_VAR(DBUS_DAEMONDIR, dbus-1, daemondir)
|
||||
+
|
||||
AM_CONDITIONAL(DBUS_TESTS, test "${little_endian}" = "yes")
|
||||
AM_CONDITIONAL(CERT_TESTS, test "${have_openssl}" = "yes")
|
||||
|
||||
--- a/unit/test-dbus-message-fds.c
|
||||
+++ b/unit/test-dbus-message-fds.c
|
||||
@@ -51,7 +51,7 @@
|
||||
char *prg_envp[1];
|
||||
pid_t pid;
|
||||
|
||||
- prg_argv[0] = "/usr/bin/dbus-daemon";
|
||||
+ prg_argv[0] = DBUS_DAEMON;
|
||||
prg_argv[1] = "--nopidfile";
|
||||
prg_argv[2] = "--nofork";
|
||||
prg_argv[3] = "--config-file=" UNITDIR "dbus.conf";
|
||||
--- a/unit/test-dbus-properties.c
|
||||
+++ b/unit/test-dbus-properties.c
|
||||
@@ -48,7 +48,7 @@
|
||||
char *prg_envp[1];
|
||||
pid_t pid;
|
||||
|
||||
- prg_argv[0] = "/usr/bin/dbus-daemon";
|
||||
+ prg_argv[0] = DBUS_DAEMON;
|
||||
prg_argv[1] = "--nopidfile";
|
||||
prg_argv[2] = "--nofork";
|
||||
prg_argv[3] = "--config-file=" UNITDIR "dbus.conf";
|
||||
--- a/unit/test-dbus.c
|
||||
+++ b/unit/test-dbus.c
|
||||
@@ -45,7 +45,7 @@
|
||||
char *prg_envp[1];
|
||||
pid_t pid;
|
||||
|
||||
- prg_argv[0] = "/usr/bin/dbus-daemon";
|
||||
+ prg_argv[0] = DBUS_DAEMON;
|
||||
prg_argv[1] = "--nopidfile";
|
||||
prg_argv[2] = "--nofork";
|
||||
prg_argv[3] = "--config-file=" UNITDIR "dbus.conf";
|
|
@ -3,12 +3,12 @@
|
|||
stdenv.mkDerivation rec {
|
||||
pname = "iwd";
|
||||
|
||||
version = "0.18";
|
||||
version = "0.19";
|
||||
|
||||
src = fetchgit {
|
||||
url = https://git.kernel.org/pub/scm/network/wireless/iwd.git;
|
||||
rev = version;
|
||||
sha256 = "19scrkdyfj92cycirm22in1jf6rb77sy419gki4m9j8zdyapcqm9";
|
||||
sha256 = "0848r06bnx5k6wlmy425hljc3f03x9xx0r83vdvf630jryc9llmz";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
|
54
pkgs/tools/networking/ofono/default.nix
Normal file
54
pkgs/tools/networking/ofono/default.nix
Normal file
|
@ -0,0 +1,54 @@
|
|||
{ stdenv
|
||||
, fetchgit
|
||||
, autoreconfHook
|
||||
, pkgconfig
|
||||
, glib
|
||||
, dbus
|
||||
, ell
|
||||
, systemd
|
||||
, bluez
|
||||
, mobile-broadband-provider-info
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ofono";
|
||||
version = "1.30";
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
src = fetchgit {
|
||||
url = "git://git.kernel.org/pub/scm/network/ofono/ofono.git";
|
||||
rev = version;
|
||||
sha256 = "1qzysmzpgbh6zc3x9xh931wxcazka9wwx727c2k66z9gal2n6n66";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
pkgconfig
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib
|
||||
dbus
|
||||
ell
|
||||
systemd
|
||||
bluez
|
||||
mobile-broadband-provider-info
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
"--with-dbusconfdir=${placeholder ''out''}/etc/dbus-1/system.d"
|
||||
"--with-systemdunitdir=${placeholder ''out''}/lib/systemd/system"
|
||||
"--enable-external-ell"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Infrastructure for building mobile telephony (GSM/UMTS) applications";
|
||||
homepage = https://01.org/ofono;
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ jtojnar ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -16066,6 +16066,8 @@ in
|
|||
|
||||
ofp = callPackage ../os-specific/linux/ofp { };
|
||||
|
||||
ofono = callPackage ../tools/networking/ofono { };
|
||||
|
||||
openpam = callPackage ../development/libraries/openpam { };
|
||||
|
||||
openbsm = callPackage ../development/libraries/openbsm { };
|
||||
|
|
Loading…
Reference in a new issue