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

84 lines
1.3 KiB
Nix
Raw Normal View History

2020-02-29 15:59:51 +00:00
{ stdenv
, fetchFromGitHub
, meson
, ninja
, pkgconfig
, doxygen
, graphviz
, valgrind
, glib
, dbus
, gst_all_1
, alsaLib
, ffmpeg
, libjack2
, udev
, libva
, xorg
, sbc
, SDL2
, makeFontsConf
2017-11-14 03:41:25 +00:00
}:
let
2018-02-27 16:15:13 +00:00
fontsConf = makeFontsConf {
2020-02-29 15:59:51 +00:00
fontDirectories = [];
2018-02-27 16:15:13 +00:00
};
2020-02-29 15:59:51 +00:00
in
stdenv.mkDerivation rec {
pname = "pipewire";
version = "0.2.7";
2017-11-14 03:41:25 +00:00
2020-02-29 15:59:51 +00:00
outputs = [ "out" "lib" "dev" "doc" ];
2017-11-14 03:41:25 +00:00
src = fetchFromGitHub {
owner = "PipeWire";
repo = "pipewire";
rev = version;
sha256 = "1q5wrqnhhs6r49p8yvkw1pl0cnsd4rndxy4h5lvdydwgf1civcwc";
2017-11-14 03:41:25 +00:00
};
nativeBuildInputs = [
2020-02-29 15:59:51 +00:00
doxygen
graphviz
meson
ninja
pkgconfig
valgrind
2017-11-14 03:41:25 +00:00
];
2020-02-29 15:59:51 +00:00
2017-11-14 03:41:25 +00:00
buildInputs = [
2020-02-29 15:59:51 +00:00
SDL2
alsaLib
dbus
ffmpeg
glib
gst_all_1.gst-plugins-base
gst_all_1.gstreamer
libjack2
libva
sbc
udev
xorg.libX11
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 ];
};
}