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: 5e6f48c64fc2
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: 2df2efc52668
Choose a head ref
  • 6 commits
  • 6 files changed
  • 5 contributors

Commits on Jun 14, 2019

  1. znc: 1.7.2 -> 1.7.3

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/znc/versions
    
    (cherry picked from commit 8419ae5)
    r-ryantm authored and tokudan committed Jun 14, 2019
    Copy the full SHA
    3deecf1 View commit details

Commits on Jun 16, 2019

  1. qemu: CVE-2019-12155

    (cherry picked from commit a4e6261)
    mmahut authored and FRidh committed Jun 16, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    caendesilva Caen De Silva
    Copy the full SHA
    394dfe9 View commit details
  2. Merge #63131: thunderbird*: 60.7.0 -> 60.7.1 (security)

    (cherry picked from commit 5480234)
    vcunat committed Jun 16, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    caendesilva Caen De Silva
    Copy the full SHA
    8992980 View commit details
  3. zziplib: patch CVE-2018-17828

    Fixes NixOS/nixpkgs#61961
    Close NixOS/nixpkgs#63190
    vcunat amended some nitpicks into the original commit.
    
    (cherry picked from commit 3aa8f94)
    mmahut authored and vcunat committed Jun 16, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    caendesilva Caen De Silva
    Copy the full SHA
    152d76d View commit details
  4. Merge pull request #63141 from tokudan/release-19.03-znc173

    znc: 1.7.2 -> 1.7.3 Security, 19.03
    fpletz authored Jun 16, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    caendesilva Caen De Silva
    Copy the full SHA
    2509881 View commit details
  5. afew: 1.3.0 -> 2.0.0

    (cherry picked from commit dc1228d)
    flokli committed Jun 16, 2019
    Copy the full SHA
    2df2efc View commit details
21 changes: 12 additions & 9 deletions pkgs/applications/networking/mailreaders/afew/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

pythonPackages.buildPythonApplication rec {
pname = "afew";
version = "1.3.0";
version = "2.0.0";

src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = "0105glmlkpkjqbz350dxxasvlfx9dk0him9vwbl86andzi106ygz";
sha256 = "0j60501nm242idf2ig0h7p6wrg58n5v2p6zfym56v9pbvnbmns0s";
};

nativeBuildInputs = with pythonPackages; [ sphinx setuptools_scm ];
@@ -15,19 +15,22 @@ pythonPackages.buildPythonApplication rec {
pythonPackages.notmuch chardet dkimpy
] ++ stdenv.lib.optional (!pythonPackages.isPy3k) subprocess32;

makeWrapperArgs = [
''--prefix PATH ':' "${notmuch}/bin"''
];

outputs = [ "out" "doc" ];

postBuild = ''
make -C docs man
python setup.py build_sphinx -b html,man
'';

postInstall = ''
mandir="$out/share/man/man1"
mkdir -p "$mandir"
cp docs/build/man/* "$mandir"
install -D -v -t $out/share/man/man1 build/sphinx/man/*
mkdir -p $out/share/doc/afew
cp -R build/sphinx/html/* $out/share/doc/afew
'';

makeWrapperArgs = [
''--prefix PATH ':' "${notmuch}/bin"''
];

meta = with stdenv.lib; {
homepage = https://github.com/afewmail/afew;

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.0";
version = "60.7.1";

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

# from firefox, but without sound libraries
4 changes: 2 additions & 2 deletions pkgs/applications/networking/znc/default.nix
Original file line number Diff line number Diff line change
@@ -13,11 +13,11 @@ with stdenv.lib;

stdenv.mkDerivation rec {
name = "znc-${version}";
version = "1.7.2";
version = "1.7.3";

src = fetchurl {
url = "https://znc.in/releases/archive/${name}.tar.gz";
sha256 = "1ac2csl5jr56vahnxdynlvrhwlvcc1gqxvyifckc6cn5aj7ygd30";
sha256 = "0g8i5hsl4kinpz1wp0a2zniidv3w2sd6awq8676fds516wcc6k0y";
};

nativeBuildInputs = [ pkgconfig ];
5 changes: 5 additions & 0 deletions pkgs/applications/virtualization/qemu/default.nix
Original file line number Diff line number Diff line change
@@ -82,6 +82,11 @@ stdenv.mkDerivation rec {
url = "https://git.qemu.org/?p=qemu.git;a=patch;h=b05b267840515730dbf6753495d5b7bd8b04ad1c";
sha256 = "03a5vc5wvirbyi5r8kb2r4m2w6f1zmh9bqsr2psh4pblwar0nf55";
})
(fetchpatch {
url = "https://git.qemu.org/?p=qemu.git;a=patch;h=d52680fc932efb8a2f334cc6993e705ed1e31e99";
name = "CVE-2019-12155.patch";
sha256 = "0h2q71mcz3gvlrbfkqcgla74jdg73hvzcrwr4max2ckpxx8x9207";
})
] ++ optional nixosTestRunner ./force-uid0-on-9p.patch
++ optional pulseSupport ./fix-hda-recording.patch
++ optionals stdenv.hostPlatform.isMusl [
9 changes: 8 additions & 1 deletion pkgs/development/libraries/zziplib/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ docbook_xml_dtd_412, fetchurl, stdenv, perl, python2, zip, xmlto, zlib }:
{ docbook_xml_dtd_412, fetchurl, stdenv, perl, python2, zip, xmlto, zlib, fetchpatch }:

stdenv.mkDerivation rec {
name = "zziplib-${version}";
@@ -9,6 +9,13 @@ stdenv.mkDerivation rec {
sha256 = "0i052a7shww0fzsxrdp3rd7g4mbzx7324a8ysbc0br7frpblcql4";
};

patches = [
(fetchpatch {
name = "CVE-2018-17828.patch";
url = "https://github.com/gdraheim/zziplib/commit/f609ae8971f3c0ce6.diff";
sha256 = "0jhiz4fgr93wzh6q03avn95b2nsf6402jaki6hxirxyhs5v9ahry";
})
];
postPatch = ''
sed -i -e s,--export-dynamic,, configure
'';