nixpkgs/pkgs/tools/networking/ofono/default.nix

67 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv
2018-08-12 00:14:34 +00:00
, fetchgit
, autoreconfHook
2021-01-17 03:51:22 +00:00
, pkg-config
2018-08-12 00:14:34 +00:00
, glib
, dbus
, ell
, systemd
, bluez
, mobile-broadband-provider-info
}:
stdenv.mkDerivation rec {
pname = "ofono";
2021-05-13 21:14:51 +00:00
version = "1.32";
2018-08-12 00:14:34 +00:00
outputs = [ "out" "dev" ];
src = fetchgit {
url = "git://git.kernel.org/pub/scm/network/ofono/ofono.git";
rev = version;
2021-05-13 21:14:51 +00:00
sha256 = "sha256-bJ7Qgau5soPiptrhcMZ8rWxfprRCTeR7OjQ5HZQ9hbc=";
2018-08-12 00:14:34 +00:00
};
patches = [
./0001-Search-connectors-in-OFONO_PLUGIN_PATH.patch
];
2018-08-12 00:14:34 +00:00
nativeBuildInputs = [
autoreconfHook
2021-01-17 03:51:22 +00:00
pkg-config
2018-08-12 00:14:34 +00:00
];
buildInputs = [
glib
dbus
ell
systemd
bluez
mobile-broadband-provider-info
];
configureFlags = [
"--with-dbusconfdir=${placeholder "out"}/share"
"--with-systemdunitdir=${placeholder "out"}/lib/systemd/system"
2018-08-12 00:14:34 +00:00
"--enable-external-ell"
];
postInstall = ''
rm -r $out/etc/ofono
ln -s /etc/ofono $out/etc/ofono
'';
enableParallelBuilding = true;
enableParallelChecking = false;
2018-08-12 00:14:34 +00:00
doCheck = true;
meta = with lib; {
2018-08-12 00:14:34 +00:00
description = "Infrastructure for building mobile telephony (GSM/UMTS) applications";
homepage = "https://01.org/ofono";
2018-08-12 00:14:34 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ jtojnar ];
platforms = platforms.linux;
};
}