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: d9a83d34c8da
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 107e2b7b29fd
Choose a head ref
  • 15 commits
  • 13 files changed
  • 7 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

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    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

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    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

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    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

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    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

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    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

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    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

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    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

    Verified

    This commit was signed with the committer’s verified signature.
    fpletz Franz Pletz
    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

    Partially verified

    This commit is signed with the committer’s verified signature.
    fpletz’s contribution has been verified via GPG key.
    We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
    Copy the full SHA
    bcbb7ec View commit details
  10. gitlab: Don't build any gitlab component outside linux

    For some reason hydra seems to have issues downloading the
    gitlab-workhorse source on macOS. Since we don't build the rails app
    for macOS, the other components seem a bit useless there, so we
    limit them to linux for now.
    
    (cherry picked from commit a30facc)
    talyz authored and flokli committed Nov 8, 2019
    Copy the full SHA
    84c3cf6 View commit details
  11. gitlab: Limit node memory consumption to 2048MB

    Hydra fails to build the assets on i686 - it runs out of memory. If we
    limit the max consumption to 2048MB the assets still build, and will
    hopefully also build on hydra.
    
    (cherry picked from commit 22302ce)
    talyz authored and flokli committed Nov 8, 2019
    Copy the full SHA
    ce24a92 View commit details
  12. gitlab: 12.4.1 -> 12.4.2

    (cherry picked from commit a779d77)
    talyz authored and flokli committed Nov 8, 2019
    Copy the full SHA
    23af404 View commit details
  13. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    70fdd74 View commit details
  14. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    f074604 View commit details
  15. nixos/redis: fix merging

    #71584 did merging without mkMerge.
    
    cc @jtojnar
    
    (cherry picked from commit 6303131)
    flokli committed Nov 8, 2019
    Copy the full SHA
    107e2b7 View commit details
8 changes: 4 additions & 4 deletions nixos/modules/services/databases/redis.nix
Original file line number Diff line number Diff line change
@@ -185,10 +185,10 @@ in
###### implementation

config = mkIf config.services.redis.enable {

boot.kernel.sysctl = {
"vm.nr_hugepages" = "0";
} // mkIf cfg.vmOverCommit { "vm.overcommit_memory" = "1"; };
boot.kernel.sysctl = (mkMerge [
{ "vm.nr_hugepages" = "0"; }
( mkIf cfg.vmOverCommit { "vm.overcommit_memory" = "1"; } )
]);

networking.firewall = mkIf cfg.openFirewall {
allowedTCPPorts = [ cfg.port ];
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 {

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -25,11 +25,11 @@ let
gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc;
in stdenv.mkDerivation rec {
pname = "thunderbird";
version = "68.1.1";
version = "68.2.2";

src = fetchurl {
url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz";
sha512 = "2ng5wwd7fn9247ggzlxx96scc2nalaahzvxkzvb87mp9fbfcsi3v9dh370cm42px8hrknnsp2lrfk9hqx4287zyn9pl3k9vr6a9cswl";
sha512 = "3mvanjfc35f14lsfa4zjlhsvwij1n9dz9xmisd5s376r5wp9y33sva5ly914b2hmdl85ypdwv90zyi6whj7jb2f2xmqk480havxgjcn";
};

# from firefox, but without sound libraries
@@ -136,6 +136,9 @@ in stdenv.mkDerivation rec {
gappsWrapperArgs+=(
--argv0 "$target"
--set MOZ_APP_LAUNCHER thunderbird
# See commit 87e261843c4236c541ee0113988286f77d2fa1ee
--set MOZ_LEGACY_PROFILES 1
--set MOZ_ALLOW_DOWNGRADE 1
# https://github.com/NixOS/nixpkgs/pull/61980
--set SNAP_NAME "thunderbird"
)
Original file line number Diff line number Diff line change
@@ -21,3 +21,15 @@ diff -ru -x '*~' a/toolkit/content/jar.mn b/toolkit/content/jar.mn
content/global/buildconfig.css
content/global/contentAreaUtils.js
content/global/datepicker.xhtml
--- a/comm/mail/base/jar.mn
+++ b/comm/mail/base/jar.mn
@@ -117,9 +117,7 @@
% override chrome://mozapps/content/profile/profileDowngrade.js chrome://messenger/content/profileDowngrade.js
% override chrome://mozapps/content/profile/profileDowngrade.xul chrome://messenger/content/profileDowngrade.xul

-* content/messenger/buildconfig.html (content/buildconfig.html)
content/messenger/buildconfig.css (content/buildconfig.css)
-% override chrome://global/content/buildconfig.html chrome://messenger/content/buildconfig.html
% override chrome://global/content/buildconfig.css chrome://messenger/content/buildconfig.css

# L10n resources and overrides.
6 changes: 3 additions & 3 deletions pkgs/applications/version-management/gitlab/data.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"version": "12.4.1",
"repo_hash": "0dmb8ds6c5paxg35nricaywfhsgmp5rr46kk21hy2hsddgwkyb4k",
"version": "12.4.2",
"repo_hash": "00y8n0y7wydwxq62fyf7hcpx90zz5sw458m2773lz7pdgnpnrdc2",
"owner": "gitlab-org",
"repo": "gitlab",
"rev": "v12.4.1-ee",
"rev": "v12.4.2-ee",
"passthru": {
"GITALY_SERVER_VERSION": "1.67.0",
"GITLAB_PAGES_VERSION": "1.11.0",
2 changes: 1 addition & 1 deletion pkgs/applications/version-management/gitlab/default.nix
Original file line number Diff line number Diff line change
@@ -76,7 +76,7 @@ let
bundle exec rake gettext:po_to_json RAILS_ENV=production NODE_ENV=production
bundle exec rake rake:assets:precompile RAILS_ENV=production NODE_ENV=production
bundle exec rake webpack:compile RAILS_ENV=production NODE_ENV=production NODE_OPTIONS="--max_old_space_size=4096"
bundle exec rake webpack:compile RAILS_ENV=production NODE_ENV=production NODE_OPTIONS="--max_old_space_size=2048"
bundle exec rake gitlab:assets:fix_urls RAILS_ENV=production NODE_ENV=production
runHook postBuild
Original file line number Diff line number Diff line change
@@ -53,8 +53,9 @@ in buildGoPackage rec {
outputs = [ "bin" "out" "ruby" ];

meta = with stdenv.lib; {
homepage = http://www.gitlab.com/;
platforms = platforms.unix;
homepage = https://gitlab.com/gitlab-org/gitaly;
description = "A Git RPC service for handling all the git calls made by GitLab";
platforms = platforms.linux;
maintainers = with maintainers; [ roblabla globin fpletz ];
license = licenses.mit;
};
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ buildGoPackage rec {
meta = with stdenv.lib; {
description = "SSH access and repository management app for GitLab";
homepage = http://www.gitlab.com/;
platforms = platforms.unix;
platforms = platforms.linux;
maintainers = with maintainers; [ fpletz globin talyz ];
license = licenses.mit;
};
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ buildGoPackage rec {

meta = with stdenv.lib; {
homepage = http://www.gitlab.com/;
platforms = platforms.unix;
platforms = platforms.linux;
maintainers = with maintainers; [ fpletz globin talyz ];
license = licenses.mit;
};
4 changes: 2 additions & 2 deletions pkgs/servers/documize-community/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

buildGoPackage rec {
pname = "documize-community";
version = "3.4.1";
version = "3.4.2";

src = fetchFromGitHub {
owner = "documize";
repo = "community";
rev = "v${version}";
sha256 = "1qbf5c42mf30kc4yrk7mav8hk91v5yjx32h9wirmqkcb9k2lpv7s";
sha256 = "17dzj24dc3f6bw8v4fsj578gfz0fcvh42a2srci580s41mq2kjy4";
};

goPackagePath = "github.com/documize/community";
6 changes: 3 additions & 3 deletions pkgs/servers/monitoring/prometheus/wireguard-exporter.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "wireguard-exporter";
version = "3.2.0";
version = "3.2.1";

src = fetchFromGitHub {
owner = "MindFlavor";
repo = "prometheus_wireguard_exporter";
rev = version;
sha256 = "0j6xcdbh6fl8z9zyl3rqnnxjkg30nigs9a6ndlbi2ycgmlnds55m";
sha256 = "1hyqvk3sxirm91lasf1z1wkzaql1g52my9a9q42z1h0hq66bc6nk";
};

cargoSha256 = "1ndb33bi08j40b4jkj4q7d3k0cw5fscz2gc2cc3134nbs2r7jamk";
cargoSha256 = "0wdyvl58h66xjcnl2kf3f7gnn4nc4vzpl870jc5x0qrkz28jppxz";

buildInputs = lib.optional stdenv.isDarwin Security;