about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/mmsd/default.nix
blob: 43891d612bb1a23b19f702155b9a49e4b26c84f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib, stdenv
, fetchgit
, autoreconfHook
, pkg-config
, glib
, dbus
}:

stdenv.mkDerivation rec {
  pname = "mmsd";
  version = "unstable-2019-07-15";

  src = fetchgit {
    url = "https://git.kernel.org/pub/scm/network/ofono/mmsd.git";
    rev = "f4b8b32477a411180be1823fdc460b4f7e1e3c9c";
    sha256 = "0hcnpyhsi7b5m825dhnwbp65yi0961wi8mipzdvaw5nc693xv15b";
  };

  nativeBuildInputs = [
    autoreconfHook
    pkg-config
  ];

  buildInputs = [
    glib
    dbus
  ];

  doCheck = true;

  meta = with lib; {
    description = "Multimedia Messaging Service Daemon";
    homepage = "https://01.org/ofono";
    license = licenses.gpl2;
    maintainers = with maintainers; [ ];
    platforms = platforms.linux;
  };
}