mmsd: init at 1.12.1

This commit is contained in:
Julien Moutinho 2022-10-20 14:04:54 +02:00
parent fee02fd5c2
commit acac950ef6
2 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,53 @@
{ lib, stdenv
, fetchFromGitLab
, c-ares
, dbus
, glib
, libphonenumber
, libsoup
, meson
, mobile-broadband-provider-info
, modemmanager
, ninja
, pkg-config
, protobuf
}:
stdenv.mkDerivation rec {
pname = "mmsd-tng";
version = "1.12.1";
src = fetchFromGitLab {
owner = "kop316";
repo = "mmsd";
rev = version;
sha256 = "sha256-fhbiTJWmQwJpuMaVX2qWyWwJ/2Y/Vczo//+0T0b6jhA=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
c-ares
dbus
glib
libphonenumber
libsoup
mobile-broadband-provider-info
modemmanager
protobuf
];
doCheck = true;
meta = with lib; {
description = "Multimedia Messaging Service Daemon - The Next Generation";
homepage = "https://gitlab.com/kop316/mmsd";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ julm ];
platforms = platforms.linux;
};
}

View File

@ -30573,6 +30573,8 @@ with pkgs;
mmsd = callPackage ../tools/networking/mmsd { };
mmsd-tng = callPackage ../tools/networking/mmsd-tng { };
mmtc = callPackage ../applications/audio/mmtc { };
mnamer = callPackage ../applications/misc/mnamer { };