mmsd: init at unstable-2019-07-15
This commit is contained in:
parent
c0acd27c6e
commit
d35ad68f98
38
pkgs/tools/networking/mmsd/default.nix
Normal file
38
pkgs/tools/networking/mmsd/default.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchgit
|
||||||
|
, autoreconfHook
|
||||||
|
, pkgconfig
|
||||||
|
, glib
|
||||||
|
, dbus
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "mmsd";
|
||||||
|
version = "unstable-2019-07-15";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "git://git.kernel.org/pub/scm/network/ofono/mmsd.git";
|
||||||
|
rev = "f4b8b32477a411180be1823fdc460b4f7e1e3c9c";
|
||||||
|
sha256 = "0hcnpyhsi7b5m825dhnwbp65yi0961wi8mipzdvaw5nc693xv15b";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
autoreconfHook
|
||||||
|
pkgconfig
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
glib
|
||||||
|
dbus
|
||||||
|
];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Multimedia Messaging Service Daemon";
|
||||||
|
homepage = "https://01.org/ofono";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = with maintainers; [ jtojnar ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -19973,6 +19973,8 @@ in
|
|||||||
wxGTK30 = wxGTK30.override { withWebKit = true ; };
|
wxGTK30 = wxGTK30.override { withWebKit = true ; };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mmsd = callPackage ../tools/networking/mmsd { };
|
||||||
|
|
||||||
moc = callPackage ../applications/audio/moc { };
|
moc = callPackage ../applications/audio/moc { };
|
||||||
|
|
||||||
mod-distortion = callPackage ../applications/audio/mod-distortion { };
|
mod-distortion = callPackage ../applications/audio/mod-distortion { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user