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: d7cd099d6fe0
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: 6c988bce7706
Choose a head ref
  • 15 commits
  • 14 files changed
  • 7 contributors

Commits on Sep 3, 2018

  1. Revert "[cpan2nix] perlPackages.GetoptLongDescriptive: 0.102 -> 0.103"

    It broke perlPackages.MouseXGetOpt
    
    This reverts commit ad47c38.
    
    (cherry picked from commit 9889c0f)
    xeji committed Sep 3, 2018
    Copy the full SHA
    4c00a04 View commit details
  2. Keras: fix build by updating expected dependencies. (#45992)

    Keras expects keras_preprocessing 1.0.2 and 1.0.4. 1.0.3 and 1.0.5
    are respectively in nixpkgs.
    
    ZHF #45960
    
    (cherry picked from commit e33be2a)
    Daniël de Kok authored and xeji committed Sep 3, 2018
    Copy the full SHA
    08a86af View commit details
  3. perlPackages.UNIVERSALref: broken with perl 5.26+

    (cherry picked from commit 9173c37)
    volth authored and Mic92 committed Sep 3, 2018
    Copy the full SHA
    414202c View commit details
  4. perlPackages.TestAggregate: broken with perl 5.26+ (#46003)

    (cherry picked from commit c36bfa7)
    volth authored and xeji committed Sep 3, 2018
    Copy the full SHA
    f370254 View commit details
  5. valadoc: fix build

    (cherry picked from commit f828bb3)
    worldofpeace authored and xeji committed Sep 3, 2018
    Copy the full SHA
    2fd6a4a View commit details
  6. SkypeExport: fix build

    (cherry picked from commit 451e04f)
    worldofpeace authored and xeji committed Sep 3, 2018
    Copy the full SHA
    74dfea0 View commit details
  7. xfce4-mixer: fix build

    (cherry picked from commit 6ed0823)
    worldofpeace authored and xeji committed Sep 3, 2018
    Copy the full SHA
    e36aa2d View commit details
  8. amule: fix build

    (cherry picked from commit 9069908)
    worldofpeace authored and xeji committed Sep 3, 2018
    Copy the full SHA
    c5c0469 View commit details
  9. imgcat: fix build

    (cherry picked from commit 66385a6)
    worldofpeace authored and xeji committed Sep 3, 2018
    Copy the full SHA
    46733c6 View commit details
  10. photoflow: 2018-03-06 -> 2018-08-28

    (cherry picked from commit a3db672)
    worldofpeace authored and xeji committed Sep 3, 2018
    Copy the full SHA
    2aab202 View commit details
  11. sayonara: 1.0.0-git5-20180115 -> 1.1.1-git1-20180828

    (cherry picked from commit 3149f84)
    worldofpeace authored and xeji committed Sep 3, 2018
    Copy the full SHA
    d22277b View commit details
  12. photoflow: mark broken for aarch64

    (cherry picked from commit 507dfcc)
    worldofpeace authored and xeji committed Sep 3, 2018
    Copy the full SHA
    00a43c0 View commit details
  13. kodi: fix nfs support (#46006)

    libnfs is required to be in the LD_LIBRARY_PATH for kodi if you want nfs support 
    see: https://www.reddit.com/r/NixOS/comments/9aiquo/how_to_enable_nfs_support_in_kodi/
    
    (cherry picked from commit 435eccf)
    aanderse authored and xeji committed Sep 3, 2018
    Copy the full SHA
    427ac1a View commit details
  14. ion: broken on darwin (#46010)

    (cherry picked from commit 8954c1f)
    dywedir authored and xeji committed Sep 3, 2018
    Copy the full SHA
    05c52a7 View commit details
  15. Revert "arrow-cpp: 0.9.0 -> 0.10.0" (#45991)

    Hold off the upgrade until parquet 1.5.0 is released.
    
    This reverts commit 72d6307.
    
    (cherry picked from commit 992d64bf3e7210185e7145014bfc63f9b3719a9f)
    veprbl authored and xeji committed Sep 3, 2018
    Copy the full SHA
    6c988bc View commit details
6 changes: 3 additions & 3 deletions pkgs/applications/audio/sayonara/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ stdenv, fetchurl, cmake, qt5, zlib, taglib, pkgconfig, pcre, gst_all_1 }:

let
version = "1.0.0-git5-20180115";
version = "1.1.1-git1-20180828";
in
stdenv.mkDerivation {
name = "sayonara-player-${version}";

src = fetchurl {
url = "https://sayonara-player.com/sw/sayonara-player-${version}.tar.gz";
sha256 = "1fl7zplnrrvbv1xm4g348bpd46jj39jvbm808hyjjq92i64wqg37";
sha256 = "0rvy47qvavrp03zjdrw025dmq9fq5aaii3q1qq8b94byarl0c5kn";
};

nativeBuildInputs = [ cmake pkgconfig ];
@@ -39,7 +39,7 @@ stdenv.mkDerivation {
{ description = "Sayonara music player";
homepage = https://sayonara-player.com/;
license = licenses.gpl3;
platforms = qt5.qtbase.meta.platforms;
platforms = platforms.linux;
maintainers = [ maintainers.deepfire ];
};
}
2 changes: 1 addition & 1 deletion pkgs/applications/graphics/imgcat/default.nix
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
name = "imgcat-${version}";
version = "2.3.0";

buildTools = [ autoconf automake libtool ncurses ];
buildInputs = [ autoconf automake libtool ncurses ];

preConfigure = ''
${autoconf}/bin/autoconf
9 changes: 5 additions & 4 deletions pkgs/applications/graphics/photoflow/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, fetchFromGitHub, gettext, glib, libxml2, pkgconfig, swig, automake, gobjectIntrospection, cmake, ninja, libtiff, libjpeg, fftw, exiv2, lensfun, gtkmm2, libraw, lcms2, libexif, vips, expat, pcre, pugixml }:

stdenv.mkDerivation {
name = "photoflow-unstable-2018-03-06";
name = "photoflow-unstable-2018-08-28";

src = fetchFromGitHub {
owner = "aferrero2707";
repo = "PhotoFlow";
rev = "f9bbea183fa02412d1d17075955d2284eeaf8174";
sha256 = "1fsk7kdmlkd64wcswbxrl87aqwmzqak6p3s38ggxzx2h51fa7lmf";
rev = "df03f2538ddd232e693c307db4ab63eb5bdfea38";
sha256 = "08ybhv08h24y4li8wb4m89xgrz1szlwpksf6vjharp8cznn4y4x9";
};

nativeBuildInputs = [
@@ -50,6 +50,7 @@ stdenv.mkDerivation {
homepage = https://aferrero2707.github.io/PhotoFlow/;
license = licenses.gpl3Plus;
maintainers = [ maintainers.MtP ];
platforms = platforms.all;
platforms = platforms.linux;
broken = stdenv.isAarch64;
};
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake, boost }:
{ stdenv, fetchFromGitHub, cmake, boost166 }:

stdenv.mkDerivation rec {
name = "SkypeExport-${version}";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};

nativeBuildInputs = [ cmake ];
buildInputs = [ boost ];
buildInputs = [ boost166 ];

preConfigure = "cd src/SkypeExport/_gccbuild/linux";
installPhase = "install -Dt $out/bin SkypeExport";
2 changes: 1 addition & 1 deletion pkgs/applications/video/kodi/default.nix
Original file line number Diff line number Diff line change
@@ -189,7 +189,7 @@ in stdenv.mkDerivation rec {
wrapProgram $out/bin/$p \
--prefix PATH ":" "${lib.makeBinPath [ python2 glxinfo xdpyinfo ]}" \
--prefix LD_LIBRARY_PATH ":" "${lib.makeLibraryPath
[ curl systemd libmad libvdpau libcec libcec_platform rtmpdump libass ]}"
([ curl systemd libmad libvdpau libcec libcec_platform rtmpdump libass ] ++ lib.optional nfsSupport libnfs)}"
done
substituteInPlace $out/share/xsessions/kodi.desktop \
9 changes: 8 additions & 1 deletion pkgs/desktops/xfce4-13/xfce4-mixer/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{ mkXfceDerivation, automakeAddFlags, dbus-glib, gtk2, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
{ mkXfceDerivation, automakeAddFlags, dbus-glib, gtk2, libxfce4ui, libxfce4util, xfce4-panel, xfconf, gst-plugins-base, libunique }:

let
gst_plugins_minimal = gst-plugins-base.override {
minimalDeps = true;
};
in
mkXfceDerivation rec {
category = "apps";
pname = "xfce4-mixer";
@@ -16,7 +21,9 @@ mkXfceDerivation rec {

buildInputs = [
dbus-glib
gst_plugins_minimal
gtk2
libunique
libxfce4ui
libxfce4util
xfce4-panel
4 changes: 2 additions & 2 deletions pkgs/development/libraries/arrow-cpp/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
name = "arrow-cpp-${version}";
version = "0.10.0";
version = "0.9.0";

src = fetchurl {
url = "mirror://apache/arrow/arrow-${version}/apache-arrow-${version}.tar.gz";
sha256 = "0bc4krapz1kzdm16npzmgdz7zvg9lip6rnqbwph8vfn7zji0fcll";
sha256 = "16l91fixb5dgx3v6xc73ipn1w1hjgbmijyvs81j7ywzpna2cdcdy";
};

sourceRoot = "apache-arrow-${version}/cpp";
8 changes: 8 additions & 0 deletions pkgs/development/python-modules/keras/default.nix
Original file line number Diff line number Diff line change
@@ -25,6 +25,14 @@ buildPythonPackage rec {
keras-applications keras-preprocessing
];

# Keras 2.2.2 expects older versions of keras_applications
# and keras_preprocessing. These substitutions can be removed
# for for the next Keras release.
postPatch = ''
substituteInPlace setup.py --replace "keras_applications==1.0.4" "keras_applications==1.0.5"
substituteInPlace setup.py --replace "keras_preprocessing==1.0.2" "keras_preprocessing==1.0.3"
'';

# Couldn't get tests working
doCheck = false;

10 changes: 4 additions & 6 deletions pkgs/development/tools/valadoc/default.nix
Original file line number Diff line number Diff line change
@@ -11,19 +11,17 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ automake autoconf which gnome3.vala libtool pkgconfig gobjectIntrospection ];
buildInputs = [ graphviz glib gnome3.libgee expat ];

preConfigure = "./autogen.sh";

passthru = {
updateScript = gnome3.updateScript {
packageName = "valadoc";
};
};

meta = with stdenv.lib; {
description = "valadoc is a documentation generator for generating API documentation from Vala source code";
homepage = https://valadoc.org;
license = stdenv.lib.licenses.gpl2;
description = "A documentation generator for generating API documentation from Vala source code";
homepage = https://valadoc.org;
license = licenses.gpl2;
maintainers = with maintainers; [ sternenseemann ];
platforms = with platforms; linux;
platforms = platforms.linux;
};
}
1 change: 1 addition & 0 deletions pkgs/shells/ion/default.nix
Original file line number Diff line number Diff line change
@@ -21,5 +21,6 @@ buildRustPackage rec {
license = licenses.mit;
maintainers = with maintainers; [ dywedir ];
platforms = platforms.all;
broken = stdenv.isDarwin;
};
}
3 changes: 3 additions & 0 deletions pkgs/tools/networking/p2p/amule/default.nix
Original file line number Diff line number Diff line change
@@ -22,6 +22,9 @@ mkDerivation rec {
++ lib.optional httpServer libpng
++ lib.optional client libX11;

# See: https://github.com/amule-project/amule/issues/126
patches = [ ./upnp-1.8.patch ];

enableParallelBuilding = true;

configureFlags = [
21 changes: 0 additions & 21 deletions pkgs/tools/networking/p2p/amule/gcc47.patch

This file was deleted.

Loading