Skip to content

Commit

Permalink
pipewire: 0.1.8 → 0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jtojnar committed Feb 27, 2018
1 parent dbb22dd commit 795e49b
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions pkgs/development/libraries/pipewire/default.nix
@@ -1,18 +1,22 @@
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, doxygen, graphviz, valgrind
, glib, dbus, gst_all_1, v4l_utils, alsaLib, ffmpeg, libjack2, libudev, libva, xlibs
, sbc, SDL2
, sbc, SDL2, makeFontsConf, freefont_ttf
}:

let
version = "0.1.8";
version = "0.1.9";

fontsConf = makeFontsConf {
fontDirectories = [ freefont_ttf ];
};
in stdenv.mkDerivation rec {
name = "pipewire-${version}";

src = fetchFromGitHub {
owner = "PipeWire";
repo = "pipewire";
rev = version;
sha256 = "1nim8d1lsf6yxk97piwmsz686w84b09lk6cagbyjr9m3k2hwybqn";
sha256 = "0r9mgwbggnnijhdz49fnv0qdka364xn1h8yml2jakyqpfrm3i2nm";
};

outputs = [ "out" "dev" "doc" ];
Expand All @@ -34,8 +38,9 @@ in stdenv.mkDerivation rec {
"-Denable_gstreamer=true"
];

FONTCONFIG_FILE = fontsConf; # Fontconfig error: Cannot load default config file

doCheck = true;
checkPhase = "meson test";

meta = with stdenv.lib; {
description = "Server and user space API to deal with multimedia pipelines";
Expand Down

0 comments on commit 795e49b

Please sign in to comment.