Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dfa97742d1c8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e66ba6bd4619
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 11, 2020

  1. gst_all_1.gst-plugins-bad: fix build on Darwin

    It fails with “Argument list too long” on Darwin,
    let’s work around it using strictDeps.
    
    Fixes: #103274
    jtojnar committed Nov 11, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e66ba6b View commit details
Showing with 7 additions and 1 deletion.
  1. +7 −1 pkgs/development/libraries/gstreamer/bad/default.nix
8 changes: 7 additions & 1 deletion pkgs/development/libraries/gstreamer/bad/default.nix
Original file line number Diff line number Diff line change
@@ -116,16 +116,18 @@ in stdenv.mkDerivation rec {
meson
ninja
pkgconfig
orc # for orcc
python3
gettext
gobject-introspection
] ++ optionals stdenv.isLinux [
wayland-protocols
wayland # for wayland-scanner
];

buildInputs = [
gst-plugins-base
orc
gobject-introspection
faad2
libass
libkate
@@ -179,6 +181,7 @@ in stdenv.mkDerivation rec {
] ++ optionals stdenv.isLinux [
bluez
wayland
wayland-protocols
] ++ optionals (!stdenv.isDarwin) [
# wildmidi requires apple's OpenAL
# TODO: package apple's OpenAL, fix wildmidi, include on Darwin
@@ -282,6 +285,9 @@ in stdenv.mkDerivation rec {
"-Dapplemedia=disabled"
];

# Argument list too long
strictDeps = true;

postPatch = ''
patchShebangs \
scripts/extract-release-date-from-doap-file.py