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: 1a7c6e6f918c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c30a7d7c92e6
Choose a head ref
  • 3 commits
  • 2 files changed
  • 3 contributors

Commits on Oct 22, 2019

  1. qscintilla: Fix qt4 build

    (cherry picked from commit eb1cd0d)
    lsix authored and das-g committed Oct 22, 2019
    Copy the full SHA
    f64135e View commit details
  2. qscintilla: fix qt4-fix patch header

    after backporting from master to release-19.09
    das-g committed Oct 22, 2019
    Copy the full SHA
    9967d27 View commit details
  3. Merge pull request #71646 from das-g/release-19.09_fix-qscintilla-qt4

    qscintilla: Fix qt4 build
    peterhoeg authored Oct 22, 2019
    Copy the full SHA
    c30a7d7 View commit details
Showing with 13 additions and 1 deletion.
  1. +2 −1 pkgs/development/libraries/qscintilla/default.nix
  2. +11 −0 pkgs/development/libraries/qscintilla/fix-qt4-build.patch
3 changes: 2 additions & 1 deletion pkgs/development/libraries/qscintilla/default.nix
Original file line number Diff line number Diff line change
@@ -29,7 +29,8 @@ stdenv.mkDerivation rec {
++ lib.optional stdenv.isDarwin fixDarwinDylibNames;


patches = lib.optional (stdenv.isDarwin && withQt5) [ xcodePatch ];
patches = (lib.optional (stdenv.isDarwin && withQt5) xcodePatch) ++
(lib.optional (!withQt5) ./fix-qt4-build.patch );

enableParallelBuilding = true;

11 changes: 11 additions & 0 deletions pkgs/development/libraries/qscintilla/fix-qt4-build.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
diff -ur QScintilla_gpl-2.9.4/Qt4Qt5/Qsci/qsciscintillabase.h QScintilla_gpl-2.9.4-fix/Qt4Qt5/Qsci/qsciscintillabase.h
--- QScintilla_gpl-2.9.4/Qt4Qt5/Qsci/qsciscintillabase.h 2016-12-25 23:01:54.000000000 +0100
+++ QScintilla_gpl-2.9.4-fix/Qt4Qt5/Qsci/qsciscintillabase.h 2019-10-22 09:07:55.429260135 +0200
@@ -31,6 +31,7 @@
#include <QByteArray>
#include <QPoint>
#include <QTimer>
+#include <QUrl>

#include <Qsci/qsciglobal.h>