67 lines
1.2 KiB
Nix
67 lines
1.2 KiB
Nix
{ lib, stdenv
|
|
, fetchgit
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, glib
|
|
, dbus
|
|
, ell
|
|
, systemd
|
|
, bluez
|
|
, mobile-broadband-provider-info
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ofono";
|
|
version = "1.31";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchgit {
|
|
url = "git://git.kernel.org/pub/scm/network/ofono/ofono.git";
|
|
rev = version;
|
|
sha256 = "033y3vggjxn1c7mw75j452idp7arrdv51axs727f7l3c5lnxqdjy";
|
|
};
|
|
|
|
patches = [
|
|
./0001-Search-connectors-in-OFONO_PLUGIN_PATH.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
dbus
|
|
ell
|
|
systemd
|
|
bluez
|
|
mobile-broadband-provider-info
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-dbusconfdir=${placeholder "out"}/share"
|
|
"--with-systemdunitdir=${placeholder "out"}/lib/systemd/system"
|
|
"--enable-external-ell"
|
|
];
|
|
|
|
postInstall = ''
|
|
rm -r $out/etc/ofono
|
|
ln -s /etc/ofono $out/etc/ofono
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
enableParallelChecking = false;
|
|
|
|
doCheck = true;
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|