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: 6f40e5d9a296
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 426028047db7
Choose a head ref
  • 5 commits
  • 3 files changed
  • 3 contributors

Commits on Jun 21, 2019

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2281a44 View commit details
  2. thunderbird: 60.7.1 -> 60.7.2

    taku0 committed Jun 21, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    frenck Franck Nijhof
    Copy the full SHA
    54b64da View commit details
  3. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    frenck Franck Nijhof
    Copy the full SHA
    ce17e99 View commit details

Commits on Jun 22, 2019

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    frenck Franck Nijhof
    Copy the full SHA
    2873952 View commit details
  2. Merge #63637: gst_all_1.gstreamer: re-enable auto_features

    In particular this fixes build of gst_all_1.gst-plugins-base
    vcunat committed Jun 22, 2019
    Copy the full SHA
    4260280 View commit details

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -24,11 +24,11 @@ let
gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc;
in stdenv.mkDerivation rec {
name = "thunderbird-${version}";
version = "60.7.1";
version = "60.7.2";

src = fetchurl {
url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz";
sha512 = "25dgbshgfmalxyah9rrgrxi4n0bmj0agcllz2hzv37w7makkl7qpf4wr859ykymmmvawcs8n747ppq9x73gn32bw88bjyxv2bn4l78q";
sha512 = "09fg8rzbg0nl5b7p3s6pnai3xgsnga1wcxii2rjnky4p96di94jby9whrjidnj2ixxmjqwysnaif6lj5mq9pr7l48qhd9vjbb3vp2g8";
};

# from firefox, but without sound libraries
8 changes: 4 additions & 4 deletions pkgs/development/libraries/gstreamer/core/default.nix
Original file line number Diff line number Diff line change
@@ -42,20 +42,20 @@ stdenv.mkDerivation rec {
docbook_xsl docbook_xml_dtd_412
];

buildInputs = [ libunwind ]
++ lib.optionals stdenv.isLinux [ libcap elfutils ]
buildInputs =
lib.optionals stdenv.isLinux [ libcap libunwind elfutils ]
++ lib.optional stdenv.isDarwin CoreServices;

propagatedBuildInputs = [ glib ];

mesonFlags = [
# Enables all features, so that we know when new dependencies are necessary.
# "-Dauto_features=enabled"
"-Dauto_features=enabled"
"-Ddbghelp=disabled" # not needed as we already provide libunwind and libdw, and dbghelp is a fallback to those
"-Dexamples=disabled" # requires many dependencies and probably not useful for our users
]
# darwin.libunwind doesn't have pkgconfig definitions so meson doesn't detect it.
++ stdenv.lib.optional stdenv.isDarwin "-DHAVE_UNWIND=1";
++ stdenv.lib.optionals stdenv.isDarwin [ "-Dlibunwind=disabled" "-Dlibdw=disabled" ];

postInstall = ''
for prog in "$dev/bin/"*; do