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: d0af797a5075
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: 42f7db63ff04
Choose a head ref
  • 8 commits
  • 8 files changed
  • 6 contributors

Commits on May 31, 2020

  1. Copy the full SHA
    094bd40 View commit details

Commits on Jun 4, 2020

  1. Merge pull request #89273 from rileyinman/plex-update

    plex: 1.19.2.2737-b69929dab -> 1.19.3.2852-219a9974e
    LnL7 authored Jun 4, 2020
    Copy the full SHA
    9ef0636 View commit details
  2. Copy the full SHA
    86990d6 View commit details
  3. liferea: Format with nixpkgs-fmt

    * Format with nixpkgs-fmt
    * Replace pkgconfig alias with pkg-config
    * Remove duplicate gsettings-desktop-schemas
    jtojnar committed Jun 4, 2020
    Copy the full SHA
    dfd6f3d View commit details
  4. liferea: Update dependencies

    dconf & librsvg are indirect and will be already available through wrapGAppsHook.
    libsecret replaces gnome-secret and is required for the keyring plug-in.
    
    Closes: NixOS/nixpkgs#39650
    jtojnar committed Jun 4, 2020
    Copy the full SHA
    d67e2a2 View commit details
  5. buildbot: 2.7.0 -> 2.8.0

    ```
    Bug fixes
    
        Fix GitHubEventHandler to include files in Change that comes from a github PR (issue # 5294)
        Updated the Docker container buildbot-master to Alpine 3.11 to fix segmentation faults caused by an old version of musl
        Base64 encoding logs and attachments sent via email so emails conform to RFC 5322 2.1.1
        Handling the case where the BitbucketStatusPush return code is not 200
        When cancelling a buildrequest, the reason field is now correctly transmitted all the way to the cancelled step.
        Fix Cache-control header to be compliant with RFC 7234 (issue # 5220)
        Fix GerritEventLogPoller class to be declared as entry_point (can be used in master.cfg file)
        Git poller: add –ignore-missing argument to git log call to avoid fatal: bad object errors
        Log watcher looks for the “tail” utility in the right location on Haiku OS.
        Add limit and filtering support for the changes data API as described in issue # 5207
    
    Improved Documentation
    
        Make docs build with the latest sphinx and improve rendering of the example HTML file for custom dashboard
        Make docs build with Sphinx 3 and fix some typos and incorrect Python module declarations
    
    Features
    
        Property and Interpolate objects can now be compared. This will generate a renderable that will be evaluated at runtime. see Renderable Comparison.
        Added argument count to lock access to allow a lock to consume a variable amount of units
        Added arguments pollRandomDelayMin and pollRandomDelayMax to HgPoller, GitPoller, P4Poller, SvnPoller to spread the polling load
    ```
    flokli committed Jun 4, 2020
    Copy the full SHA
    f71d924 View commit details
  6. openttd: 1.10.1 -> 1.10.2

    A bug in the upstream configure script was fixed (OpenTTD/OpenTTD#8145),
    which means we now need `which` available during the build.
    SFrijters authored and Jon committed Jun 4, 2020
    Copy the full SHA
    87dc127 View commit details
  7. Merge pull request #89504 from flokli/buildbot-2.8.0

    buildbot: 2.7.0 -> 2.8.0
    flokli authored Jun 4, 2020
    Copy the full SHA
    42f7db6 View commit details
59 changes: 49 additions & 10 deletions pkgs/applications/networking/newsreaders/liferea/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
{ stdenv, fetchurl, pkgconfig, intltool, python3Packages, wrapGAppsHook
, glib, libxml2, libxslt, sqlite, libsoup , webkitgtk, json-glib, gst_all_1
, libnotify, gtk3, gsettings-desktop-schemas, libpeas, dconf, librsvg
, gobject-introspection, glib-networking
{ stdenv
, fetchurl
, pkg-config
, intltool
, python3Packages
, wrapGAppsHook
, glib
, libxml2
, libxslt
, sqlite
, libsoup
, webkitgtk
, json-glib
, gst_all_1
, libnotify
, gtk3
, gsettings-desktop-schemas
, libpeas
, libsecret
, gobject-introspection
, glib-networking
}:

stdenv.mkDerivation rec {
@@ -13,17 +30,39 @@ stdenv.mkDerivation rec {
sha256 = "03pr1gmiv5y0i92bkhcxr8s311ll91chz19wb96jkixx32xav91d";
};

nativeBuildInputs = [ wrapGAppsHook python3Packages.wrapPython intltool pkgconfig ];
nativeBuildInputs = [
wrapGAppsHook
python3Packages.wrapPython
intltool
pkg-config
];

buildInputs = [
glib gtk3 webkitgtk libxml2 libxslt sqlite libsoup gsettings-desktop-schemas
libpeas gsettings-desktop-schemas json-glib dconf gobject-introspection
librsvg glib-networking libnotify
glib
gtk3
webkitgtk
libxml2
libxslt
sqlite
libsoup
libpeas
gsettings-desktop-schemas
json-glib
gobject-introspection
libsecret
glib-networking
libnotify
] ++ (with gst_all_1; [
gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad
gstreamer
gst-plugins-base
gst-plugins-good
gst-plugins-bad
]);

pythonPath = with python3Packages; [ pygobject3 pycairo ];
pythonPath = with python3Packages; [
pygobject3
pycairo
];

preFixup = ''
buildPythonPath "$out $pythonPath"
15 changes: 10 additions & 5 deletions pkgs/development/python-modules/buildbot/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, lib, buildPythonPackage, fetchPypi, fetchpatch, makeWrapper, isPy3k,
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, fetchpatch, makeWrapper, isPy3k,
python, twisted, jinja2, zope_interface, future, sqlalchemy,
sqlalchemy_migrate, dateutil, txaio, autobahn, pyjwt, pyyaml, treq,
txrequests, pyjade, boto3, moto, mock, python-lz4, setuptoolsTrial,
@@ -25,12 +25,17 @@ let

package = buildPythonPackage rec {
pname = "buildbot";
version = "2.7.0";
version = "2.8.0";

src = fetchPypi {
inherit pname version;
sha256 = "0jj8fh611n7xc3vsfbgpqsllp38cfj3spkr2kz3ara2x7jvh3406";
# tests fail with the 2.8.0 sdist, so fetchFromGitHub instead
# https://github.com/buildbot/buildbot/pull/5322
src = fetchFromGitHub {
owner = "buildbot";
repo = "buildbot";
rev = "v${version}";
sha256 = "0akd61mgjp53c3vyf2yyzd0xf0cjwpvsi7g8pz72xrvnil1s4w7k";
};
sourceRoot = "./source/master";

propagatedBuildInputs = [
# core
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/buildbot/pkg.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

buildPythonPackage rec {
pname = "buildbot-pkg";
version = "2.7.0";
version = "2.8.0";

src = fetchPypi {
inherit pname version;
sha256 = "03zb09r8w8dvd9qas7h6gdwlqc7q482ikph6h3708lpnkn72xdkb";
sha256 = "09sf36h8q8wrp0n57nb9915k86qdjyjj4xpdzy8q4s9z121iw0xz";
};

postPatch = ''
10 changes: 5 additions & 5 deletions pkgs/development/python-modules/buildbot/plugins.nix
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@

src = fetchPypi {
inherit pname version;
sha256 = "1d8xdk4rq4p3fw03cvz7d1pmpjjbyrnzzjifzv46q88vk7jakgxi";
sha256 = "1xq7pqvvsvgd2n38yzk0bqx943ldxsldrdcldwjshazq831rbdbn";
};

# Remove unneccessary circular dependency on buildbot
@@ -34,7 +34,7 @@

src = fetchPypi {
inherit pname version;
sha256 = "03pl75avi6cmmhjvfn0a0b4drn35yv37kvgn04zjdwa3m6p3haa8";
sha256 = "0ixq8x845glnykpab2z0vhwp69nbw98mg0df34kf32wjvm8j6kjh";
};

buildInputs = [ buildbot-pkg ];
@@ -56,7 +56,7 @@

src = fetchPypi {
inherit pname version;
sha256 = "0rzjk3qmlvid8qag3r00zaszchncl1nl8l2yapvc1zqh2dqlln58";
sha256 = "1gn0amv8l0n0ny1x78g8x4rpfsnhcs9gkws2zw3nx78y4pbs6lw5";
};

buildInputs = [ buildbot-pkg ];
@@ -78,7 +78,7 @@

src = fetchPypi {
inherit pname version;
sha256 = "1n4j73y9kwfqk7dz1fh1bpan68vlpnbz7idxpmsphyay8w8y9dd4";
sha256 = "04c0m4liyl4aaksq9x8wncasacfv0vgl0igafnhf440cf9lhkkwy";
};

buildInputs = [ buildbot-pkg ];
@@ -100,7 +100,7 @@

src = fetchPypi {
inherit pname version;
sha256 = "1babkcgxczs6zfk2b6jmsy2vwbrgdydrp2px1mfwa3wmv8fwlssg";
sha256 = "0c7lr4q3dvz3zhbnsvs2chsc6yn2jh10dnh1y66axdxk8hpqs3nc";
};

buildInputs = [ buildbot-pkg ];
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/buildbot/worker.nix
Original file line number Diff line number Diff line change
@@ -3,11 +3,11 @@

buildPythonPackage (rec {
pname = "buildbot-worker";
version = "2.7.0";
version = "2.8.0";

src = fetchPypi {
inherit pname version;
sha256 = "1vwy46acvczgk1hhpsqdwpcw55j4hm5pkw6j01f92axiga8r5jk6";
sha256 = "19pabha9jh3jnz9micfn5y4khnx4q6g1zc27wvfw6663mw6spykx";
};

propagatedBuildInputs = [ twisted future ];
18 changes: 9 additions & 9 deletions pkgs/development/python-modules/wtforms/default.nix
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, Babel
, markupsafe
}:

buildPythonPackage rec {
version = "2.1";
pname = "wtforms";
version = "2.3.1";
pname = "WTForms";

src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "0vyl26y9cg409cfyj8rhqxazsdnd0jipgjw06civhrd53yyi1pzz";
sha256 = "0whrd9cqhlibm31yqhvhp9illddxf0cpgcn3v806f7ajmsri66l6";
};

propagatedBuildInputs = [ markupsafe ];

# Django tests are broken "django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet."
# This is fixed in master I believe but not yet in 2.1;
doCheck = false;

propagatedBuildInputs = [ Babel ];

meta = with stdenv.lib; {
homepage = "https://github.com/wtforms/wtforms";
description = "A flexible forms validation and rendering library for Python";
homepage = "https://github.com/wtforms/wtforms";
changelog = "https://github.com/wtforms/wtforms/blob/${version}/CHANGES.rst";
license = licenses.bsd3;
maintainers = [ maintainers.bhipple ];
};

}
8 changes: 4 additions & 4 deletions pkgs/games/openttd/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, fetchzip, pkgconfig, SDL2, libpng, zlib, xz, freetype, fontconfig, libxdg_basedir
{ stdenv, fetchurl, fetchzip, pkgconfig, which, SDL2, libpng, zlib, xz, freetype, fontconfig, libxdg_basedir
, withOpenGFX ? true, withOpenSFX ? true, withOpenMSX ? true
, withFluidSynth ? true, audioDriver ? "alsa", fluidsynth, soundfont-fluid, procps
, writeScriptBin, makeWrapper, runtimeShell
@@ -29,14 +29,14 @@ let
in
stdenv.mkDerivation rec {
pname = "openttd";
version = "1.10.1";
version = "1.10.2";

src = fetchurl {
url = "https://cdn.openttd.org/openttd-releases/${version}/${pname}-${version}-source.tar.xz";
sha256 = "0d22a3c50f7a321f4f211594f4987ac16c381e8e3e40f116848e63e91e7fbb9b";
sha256 = "1xdn9rr858nq22a13cpbhcw74bwygf7lw95kvx3wn4zvb795b74k";
};

nativeBuildInputs = [ pkgconfig makeWrapper ];
nativeBuildInputs = [ pkgconfig which makeWrapper ];
buildInputs = [ SDL2 libpng xz zlib freetype fontconfig libxdg_basedir ]
++ stdenv.lib.optionals withFluidSynth [ fluidsynth soundfont-fluid ];

4 changes: 2 additions & 2 deletions pkgs/servers/plex/raw.nix
Original file line number Diff line number Diff line change
@@ -8,13 +8,13 @@
# server, and the FHS userenv and corresponding NixOS module should
# automatically pick up the changes.
stdenv.mkDerivation rec {
version = "1.19.2.2737-b69929dab";
version = "1.19.3.2852-219a9974e";
pname = "plexmediaserver";

# Fetch the source
src = fetchurl {
url = "https://downloads.plex.tv/plex-media-server-new/${version}/redhat/plexmediaserver-${version}.x86_64.rpm";
sha256 = "00s3ab66wnpwkjrp0ng8srcy3l32sh5ibv0i9m6l4d0a19hr01fs";
sha256 = "0sp7lnzf3zrwdmcg54mpvml89q1cbaq6s1cl9gj2z31xfiz07a26";
};

outputs = [ "out" "basedb" ];