3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/gstreamer/rtsp-server/default.nix

30 lines
838 B
Nix
Raw Normal View History

{ stdenv, fetchurl, meson, ninja, pkgconfig
, gst-plugins-base, gettext, gobjectIntrospection
}:
2018-03-25 18:36:10 +01:00
stdenv.mkDerivation rec {
2018-03-30 20:24:03 +01:00
name = "gst-rtsp-server-1.14.0";
2018-03-25 18:36:10 +01:00
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;
maintainers = with maintainers; [ bkchr ];
2018-03-25 18:36:10 +01:00
};
src = fetchurl {
url = "${meta.homepage}/src/gst-rtsp-server/${name}.tar.xz";
2018-03-30 20:24:03 +01:00
sha256 = "0mlp9ms5hfbyzyvmc9xgi7934g4zrh1sbgky2p9zc5fqprvs0rbb";
2018-03-25 18:36:10 +01:00
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [ meson ninja gettext gobjectIntrospection pkgconfig ];
2018-03-25 18:36:10 +01:00
buildInputs = [ gst-plugins-base ];
}