mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 19:45:54 +00:00
a17216af4c
Make either 'bin' or 'out' the first output.
32 lines
793 B
Nix
32 lines
793 B
Nix
{ stdenv, fetchurl, pkgconfig, file, glibmm, gst_all_1 }:
|
|
|
|
let
|
|
ver_maj = "1.4";
|
|
ver_min = "3";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "gstreamermm-${ver_maj}.${ver_min}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gstreamermm/${ver_maj}/${name}.tar.xz";
|
|
sha256 = "0bj6and9b26d32bq90l8nx5wqh2ikkh8dm7qwxyxfdvmrzhixhgi";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig file ];
|
|
|
|
propagatedBuildInputs = [ glibmm gst_all_1.gst-plugins-base ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "C++ interface for GStreamer";
|
|
homepage = http://gstreamer.freedesktop.org/bindings/cplusplus.html;
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ romildo ];
|
|
platforms = platforms.unix;
|
|
};
|
|
|
|
}
|