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

50 lines
1.2 KiB
Nix
Raw Normal View History

2017-11-14 04:41:25 +01: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 04:41:25 +01:00
}:
let
2018-02-27 17:15:13 +01:00
fontsConf = makeFontsConf {
fontDirectories = [ ];
2018-02-27 17:15:13 +01:00
};
2017-11-14 04:41:25 +01:00
in stdenv.mkDerivation rec {
pname = "pipewire";
version = "0.2.7";
2017-11-14 04:41:25 +01:00
src = fetchFromGitHub {
owner = "PipeWire";
repo = "pipewire";
rev = version;
sha256 = "1q5wrqnhhs6r49p8yvkw1pl0cnsd4rndxy4h5lvdydwgf1civcwc";
2017-11-14 04:41:25 +01:00
};
outputs = [ "out" "lib" "dev" "doc" ];
2017-11-14 04:41:25 +01: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 04:41:25 +01:00
];
mesonFlags = [
"-Ddocs=true"
2018-12-30 14:57:48 +01:00
"-Dgstreamer=enabled"
2017-11-14 04:41:25 +01:00
];
PKG_CONFIG_SYSTEMD_SYSTEMDUSERUNITDIR = "${placeholder "out"}/lib/systemd/user";
2018-03-22 08:49:58 +01:00
2018-02-27 17:15:13 +01:00
FONTCONFIG_FILE = fontsConf; # Fontconfig error: Cannot load default config file
2017-11-14 04:41:25 +01: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 04:41:25 +01:00
license = licenses.lgpl21;
platforms = platforms.linux;
maintainers = with maintainers; [ jtojnar ];
};
}