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
, glib, dbus, gst_all_1, libv4l, alsaLib, ffmpeg, libjack2, udev, 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-12-30 13:57:48 +00:00
version = "0.2.5";
2018-02-27 16:15:13 +00:00
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-12-30 13:57:48 +00:00
sha256 = "0hxm89ps6p75zm7rndrdr715p4ixx4f521fkjkyi7q2wh0b769s7";
2017-11-14 03:41:25 +00:00
};
outputs = [ "out" "lib" "dev" "doc" ];
2017-11-14 03:41:25 +00:00
nativeBuildInputs = [
meson ninja pkgconfig doxygen graphviz valgrind
];
buildInputs = [
glib dbus gst_all_1.gst-plugins-base gst_all_1.gstreamer libv4l
alsaLib ffmpeg libjack2 udev libva xorg.libX11 sbc SDL2
2017-11-14 03:41:25 +00:00
];
mesonFlags = [
"-Ddocs=true"
2018-12-30 13:57:48 +00:00
"-Dgstreamer=enabled"
2017-11-14 03:41:25 +00:00
];
PKG_CONFIG_SYSTEMD_SYSTEMDUSERUNITDIR = "${placeholder "out"}/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 ];
};
}