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

50 lines
1.2 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, 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 {
fontDirectories = [ ];
2018-02-27 16:15:13 +00:00
};
2017-11-14 03:41:25 +00:00
in stdenv.mkDerivation rec {
pname = "pipewire";
version = "0.2.6";
2017-11-14 03:41:25 +00:00
src = fetchFromGitHub {
owner = "PipeWire";
repo = "pipewire";
rev = version;
sha256 = "1rv1cprga0zy696pjk6gbb29p7nrbkvyla9iviii0pigflgnz6yl";
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
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 ];
};
}