Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d9a83d34c8da
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bcbb7ec52dad
Choose a head ref
  • 9 commits
  • 5 files changed
  • 4 contributors

Commits on Nov 8, 2019

  1. thunderbird-bin: 68.1.1 -> 68.2.0

    (cherry picked from commit f5d751dc7612fa796348361e2d4052885c2979aa)
    taku0 authored and vcunat committed Nov 8, 2019
    Copy the full SHA
    4fa8014 View commit details
  2. thunderbird-bin: 68.2.0 -> 68.2.1

    (cherry picked from commit 7611d2432c731bd7f5950714175dc0fc66968790)
    taku0 authored and vcunat committed Nov 8, 2019
    Copy the full SHA
    c62f8f0 View commit details
  3. thunderbird-bin: 68.2.1 -> 68.2.2

    (cherry picked from commit 31703c6e1fe2df935f533f8fc72d7c29f222b58b)
    taku0 authored and vcunat committed Nov 8, 2019
    Copy the full SHA
    fc458c2 View commit details
  4. thunderbird: 68.1.1 -> 68.2.0

    (cherry picked from commit 743e735937fd44664e43dc29ac32cc007ec8e294)
    taku0 authored and vcunat committed Nov 8, 2019
    Copy the full SHA
    4d2aa08 View commit details
  5. thunderbird: 68.2.0 -> 68.2.1

    (cherry picked from commit cd584e24da0f1491ad1001e8a7f5d96e9f5e41c7)
    taku0 authored and vcunat committed Nov 8, 2019
    Copy the full SHA
    a295e7e View commit details
  6. thunderbird: 68.2.1 -> 68.2.2

    (cherry picked from commit 1a7dce89c1a7ba7d48a0808318e4cb066480b4a7)
    taku0 authored and vcunat committed Nov 8, 2019
    Copy the full SHA
    10a4989 View commit details
  7. Merge: thunderbird*: 68.1.1 -> 68.2.2 (security)

    ...into release-19.09.  Picked from PR #72006.
    vcunat committed Nov 8, 2019
    Copy the full SHA
    87376e8 View commit details
  8. ncmpc: 0.34 -> 0.35

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/ncmpc/versions
    
    (cherry picked from commit 1506d02)
    r-ryantm authored and fpletz committed Nov 8, 2019
    Copy the full SHA
    368dbe2 View commit details
  9. ncmpc: 0.35 -> 0.36

    New release fixing a crash that affects nixos due to the build without
    pcre. https://github.com/MusicPlayerDaemon/ncmpc/releases/tag/v0.36
    
    (cherry picked from commit 245f5ec)
    phi-gamma authored and fpletz committed Nov 8, 2019
    Copy the full SHA
    bcbb7ec View commit details
4 changes: 2 additions & 2 deletions pkgs/applications/audio/ncmpc/default.nix
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@

stdenv.mkDerivation rec {
pname = "ncmpc";
version = "0.34";
version = "0.36";

src = fetchFromGitHub {
owner = "MusicPlayerDaemon";
repo = "ncmpc";
rev = "v${version}";
sha256 = "0ffby37qdg251c1w0vl6rmd13akbydnf12468z4vrl0ybwfd7fc4";
sha256 = "1ssmk1p43gjhcqi86sh6b7csqpwwpf3hs32cmnylv6pmbcwbs69h";
};

buildInputs = [ glib ncurses mpd_clientlib boost ];
Original file line number Diff line number Diff line change
@@ -160,11 +160,15 @@ stdenv.mkDerivation {
EOF
# SNAP_NAME: https://github.com/NixOS/nixpkgs/pull/61980
# MOZ_LEGACY_PROFILES and MOZ_ALLOW_DOWNGRADE:
# commit 87e261843c4236c541ee0113988286f77d2fa1ee
wrapProgram "$out/bin/thunderbird" \
--argv0 "$out/bin/.thunderbird-wrapped" \
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:" \
--suffix XDG_DATA_DIRS : "$XDG_ICON_DIRS" \
--set SNAP_NAME "thunderbird"
--set SNAP_NAME "thunderbird" \
--set MOZ_LEGACY_PROFILES 1 \
--set MOZ_ALLOW_DOWNGRADE 1
'';

passthru.updateScript = import ./../../browsers/firefox-bin/update.nix {
Loading