nixpkgs/pkgs/tools/networking/mmsd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
728 B
Nix
Raw Normal View History

{ lib, stdenv
, fetchzip
2019-11-26 01:08:44 +01:00
, autoreconfHook
2021-01-17 04:51:22 +01:00
, pkg-config
2019-11-26 01:08:44 +01:00
, glib
, dbus
}:
stdenv.mkDerivation rec {
pname = "mmsd";
version = "unstable-2019-07-15";
src = fetchzip {
url = "https://git.kernel.org/pub/scm/network/ofono/mmsd.git/snapshot/mmsd-f4b8b32477a411180be1823fdc460b4f7e1e3c9c.tar.gz";
2019-11-26 01:08:44 +01:00
sha256 = "0hcnpyhsi7b5m825dhnwbp65yi0961wi8mipzdvaw5nc693xv15b";
};
nativeBuildInputs = [
autoreconfHook
2021-01-17 04:51:22 +01:00
pkg-config
2019-11-26 01:08:44 +01:00
];
buildInputs = [
glib
dbus
];
doCheck = true;
meta = with lib; {
2019-11-26 01:08:44 +01:00
description = "Multimedia Messaging Service Daemon";
homepage = "https://01.org/ofono";
license = licenses.gpl2;
2022-10-26 20:42:00 +02:00
maintainers = with maintainers; [ ];
2019-11-26 01:08:44 +01:00
platforms = platforms.linux;
};
}