lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.11-beta 38 lines 720 B view raw
1{ lib, stdenv 2, fetchgit 3, autoreconfHook 4, pkg-config 5, glib 6, dbus 7}: 8 9stdenv.mkDerivation rec { 10 pname = "mmsd"; 11 version = "unstable-2019-07-15"; 12 13 src = fetchgit { 14 url = "https://git.kernel.org/pub/scm/network/ofono/mmsd.git"; 15 rev = "f4b8b32477a411180be1823fdc460b4f7e1e3c9c"; 16 sha256 = "0hcnpyhsi7b5m825dhnwbp65yi0961wi8mipzdvaw5nc693xv15b"; 17 }; 18 19 nativeBuildInputs = [ 20 autoreconfHook 21 pkg-config 22 ]; 23 24 buildInputs = [ 25 glib 26 dbus 27 ]; 28 29 doCheck = true; 30 31 meta = with lib; { 32 description = "Multimedia Messaging Service Daemon"; 33 homepage = "https://01.org/ofono"; 34 license = licenses.gpl2; 35 maintainers = with maintainers; [ ]; 36 platforms = platforms.linux; 37 }; 38}