nixpkgs/pkgs/development/libraries/gstreamer/rtsp-server/default.nix

28 lines
751 B
Nix
Raw Normal View History

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