nixpkgs/pkgs/development/libraries/pipewire/default.nix

51 lines
1.3 KiB
Nix
Raw Normal View History

2017-11-14 03:41:25 +00:00
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, doxygen, graphviz, valgrind
2018-03-13 10:16:03 +00:00
, glib, dbus, gst_all_1, v4l_utils, alsaLib, ffmpeg, libjack2, libudev, libva, xorg
2018-02-27 16:15:13 +00:00
, sbc, SDL2, makeFontsConf, freefont_ttf
2017-11-14 03:41:25 +00:00
}:
let
2018-02-27 16:15:13 +00:00
version = "0.1.9";
fontsConf = makeFontsConf {
fontDirectories = [ freefont_ttf ];
};
2017-11-14 03:41:25 +00:00
in stdenv.mkDerivation rec {
name = "pipewire-${version}";
src = fetchFromGitHub {
owner = "PipeWire";
repo = "pipewire";
rev = version;
2018-02-27 16:15:13 +00:00
sha256 = "0r9mgwbggnnijhdz49fnv0qdka364xn1h8yml2jakyqpfrm3i2nm";
2017-11-14 03:41:25 +00:00
};
outputs = [ "out" "dev" "doc" ];
nativeBuildInputs = [
meson ninja pkgconfig doxygen graphviz valgrind
];
buildInputs = [
glib dbus gst_all_1.gst-plugins-base gst_all_1.gstreamer v4l_utils
2018-03-13 10:16:03 +00:00
alsaLib ffmpeg libjack2 libudev libva xorg.libX11 sbc SDL2
2017-11-14 03:41:25 +00:00
];
mesonFlags = [
"-Denable_docs=true"
"-Denable_gstreamer=true"
];
PKG_CONFIG_SYSTEMD_SYSTEMDUSERUNITDIR = "lib/systemd/user";
2018-03-22 07:49:58 +00:00
2018-02-27 16:15:13 +00:00
FONTCONFIG_FILE = fontsConf; # Fontconfig error: Cannot load default config file
2017-11-14 03:41:25 +00:00
doCheck = true;
meta = with stdenv.lib; {
description = "Server and user space API to deal with multimedia pipelines";
homepage = https://pipewire.org/;
2017-11-14 03:41:25 +00:00
license = licenses.lgpl21;
platforms = platforms.linux;
maintainers = with maintainers; [ jtojnar ];
};
}