My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/networking/mmsd/default.nix

38 lines
726 B

{ lib, stdenv
, fetchgit
, autoreconfHook
, pkg-config
, 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
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; [ jtojnar ];
platforms = platforms.linux;
};
}