mmsd-tng: cleanup
This commit is contained in:
@@ -1,26 +1,28 @@
|
||||
{ lib, stdenv
|
||||
, fetchFromGitLab
|
||||
, c-ares
|
||||
, dbus
|
||||
, glib
|
||||
, libphonenumber
|
||||
, libsoup
|
||||
, meson
|
||||
, mobile-broadband-provider-info
|
||||
, modemmanager
|
||||
, ninja
|
||||
, pkg-config
|
||||
, protobuf
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitLab,
|
||||
c-ares,
|
||||
dbus,
|
||||
glib,
|
||||
libphonenumber,
|
||||
libsoup,
|
||||
meson,
|
||||
mobile-broadband-provider-info,
|
||||
modemmanager,
|
||||
ninja,
|
||||
pkg-config,
|
||||
protobuf,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "mmsd-tng";
|
||||
version = "1.12.1";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "kop316";
|
||||
repo = "mmsd";
|
||||
rev = version;
|
||||
rev = finalAttrs.version;
|
||||
hash = "sha256-fhbiTJWmQwJpuMaVX2qWyWwJ/2Y/Vczo//+0T0b6jhA=";
|
||||
};
|
||||
|
||||
@@ -43,12 +45,12 @@ stdenv.mkDerivation rec {
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
description = "Multimedia Messaging Service Daemon - The Next Generation";
|
||||
homepage = "https://gitlab.com/kop316/mmsd";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ julm ];
|
||||
platforms = platforms.linux;
|
||||
license = lib.licenses.gpl2Plus;
|
||||
maintainers = with lib.maintainers; [ julm ];
|
||||
platforms = lib.platforms.linux;
|
||||
mainProgram = "mmsdtng";
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user