gst_all_1.gst-plugins-good: 1.20.3 -> 1.22.2
This commit is contained in:
parent
4b859ee802
commit
3028bf5ea3
1 changed files with 16 additions and 3 deletions
|
@ -31,6 +31,7 @@
|
||||||
, twolame
|
, twolame
|
||||||
, gtkSupport ? false, gtk3
|
, gtkSupport ? false, gtk3
|
||||||
, qt5Support ? false, qt5
|
, qt5Support ? false, qt5
|
||||||
|
, qt6Support ? false, qt6
|
||||||
, raspiCameraSupport ? false, libraspberrypi
|
, raspiCameraSupport ? false, libraspberrypi
|
||||||
, enableJack ? true, libjack2
|
, enableJack ? true, libjack2
|
||||||
, libXdamage
|
, libXdamage
|
||||||
|
@ -43,19 +44,20 @@
|
||||||
, libgudev
|
, libgudev
|
||||||
, wavpack
|
, wavpack
|
||||||
, glib
|
, glib
|
||||||
|
, hotdoc
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert raspiCameraSupport -> (stdenv.isLinux && stdenv.isAarch64);
|
assert raspiCameraSupport -> (stdenv.isLinux && stdenv.isAarch64);
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gst-plugins-good";
|
pname = "gst-plugins-good";
|
||||||
version = "1.20.3";
|
version = "1.22.2";
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://gstreamer.freedesktop.org/src/${pname}/${pname}-${version}.tar.xz";
|
url = "https://gstreamer.freedesktop.org/src/${pname}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "sha256-+PPCBr9c2rwAlTkgtHs1da8O8V6fhxwLaWb20KpYaLc=";
|
hash = "sha256-fIzFlCXysjL2DKfRPlbt1hXaT3Eec90Bp8/6Rua8DN0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
strictDeps = true;
|
strictDeps = true;
|
||||||
|
@ -72,8 +74,14 @@ stdenv.mkDerivation rec {
|
||||||
orc
|
orc
|
||||||
libshout
|
libshout
|
||||||
glib
|
glib
|
||||||
|
|
||||||
|
# documentation
|
||||||
|
hotdoc
|
||||||
] ++ lib.optionals qt5Support (with qt5; [
|
] ++ lib.optionals qt5Support (with qt5; [
|
||||||
qtbase
|
qtbase
|
||||||
|
]) ++ lib.optionals qt6Support (with qt6; [
|
||||||
|
qtbase
|
||||||
|
qttools
|
||||||
]) ++ lib.optionals stdenv.isLinux [
|
]) ++ lib.optionals stdenv.isLinux [
|
||||||
wayland-protocols
|
wayland-protocols
|
||||||
];
|
];
|
||||||
|
@ -114,6 +122,10 @@ stdenv.mkDerivation rec {
|
||||||
qtdeclarative
|
qtdeclarative
|
||||||
qtwayland
|
qtwayland
|
||||||
qtx11extras
|
qtx11extras
|
||||||
|
]) ++ lib.optionals qt6Support (with qt6; [
|
||||||
|
qtbase
|
||||||
|
qtdeclarative
|
||||||
|
qtwayland
|
||||||
]) ++ lib.optionals stdenv.isDarwin [
|
]) ++ lib.optionals stdenv.isDarwin [
|
||||||
Cocoa
|
Cocoa
|
||||||
] ++ lib.optionals stdenv.isLinux [
|
] ++ lib.optionals stdenv.isLinux [
|
||||||
|
@ -129,10 +141,11 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
mesonFlags = [
|
mesonFlags = [
|
||||||
"-Dexamples=disabled" # requires many dependencies and probably not useful for our users
|
"-Dexamples=disabled" # requires many dependencies and probably not useful for our users
|
||||||
"-Ddoc=disabled" # `hotdoc` not packaged in nixpkgs as of writing
|
|
||||||
"-Dglib-asserts=disabled" # asserts should be disabled on stable releases
|
"-Dglib-asserts=disabled" # asserts should be disabled on stable releases
|
||||||
] ++ lib.optionals (!qt5Support) [
|
] ++ lib.optionals (!qt5Support) [
|
||||||
"-Dqt5=disabled"
|
"-Dqt5=disabled"
|
||||||
|
] ++ lib.optionals (!qt6Support) [
|
||||||
|
"-Dqt6=disabled"
|
||||||
] ++ lib.optionals (!gtkSupport) [
|
] ++ lib.optionals (!gtkSupport) [
|
||||||
"-Dgtk3=disabled"
|
"-Dgtk3=disabled"
|
||||||
] ++ lib.optionals (!enableJack) [
|
] ++ lib.optionals (!enableJack) [
|
||||||
|
|
Loading…
Reference in a new issue