gst-rtsp-server: Init at 1.12.3

This commit is contained in:
Bastian Köcher 2018-03-25 19:36:10 +02:00
parent 1ce37ab8a9
commit 666ea61bd1
2 changed files with 28 additions and 0 deletions

View file

@ -13,6 +13,8 @@ rec {
gst-plugins-ugly = callPackage ./ugly { inherit gst-plugins-base; };
gst-rtsp-server = callPackage ./rtsp-server { inherit gst-plugins-base; };
gst-libav = callPackage ./libav { inherit gst-plugins-base; };
gnonlin = callPackage ./gnonlin { inherit gst-plugins-base; };

View file

@ -0,0 +1,26 @@
{ stdenv, fetchurl, pkgconfig, gst-plugins-base }:
stdenv.mkDerivation rec {
name = "gst-rtsp-server-1.12.3";
meta = with stdenv.lib; {
description = "Gstreamer RTSP server";
homepage = "https://gstreamer.freedesktop.org";
longDescription = ''
a library on top of GStreamer for building an RTSP server.
'';
license = licenses.lgpl2Plus;
platforms = platforms.linux ++ platforms.darwin;
};
src = fetchurl {
url = "${meta.homepage}/src/gst-rtsp-server/${name}.tar.xz";
sha256 = "1v3lghx75l05hssgwxdxsgrxpn10gxlgkfb6vq0rl0hnpdqmj9b7";
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gst-plugins-base ];
}