ofono: init at 1.30
This commit is contained in:
parent
bd3a54b222
commit
590310b23f
2 changed files with 56 additions and 0 deletions
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;
|
||||
};
|
||||
}
|
|
@ -16048,6 +16048,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