Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
qscintilla: 2.9.4 -> 2.10
  • Loading branch information
peterhoeg committed Mar 31, 2017
1 parent 08c87ee commit 915e1d5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/development/libraries/qscintilla/default.nix
@@ -1,21 +1,21 @@
{ stdenv, fetchurl, unzip
{ stdenv, fetchurl
, qt4 ? null, qmake4Hook ? null
, withQt5 ? false, qtbase ? null, qmakeHook ? null
}:

stdenv.mkDerivation rec {
pname = "qscintilla";
version = "2.9.4";
version = "2.10";

name = "${pname}-${if withQt5 then "qt5" else "qt4"}-${version}";

src = fetchurl {
url = "mirror://sourceforge/pyqt/QScintilla2/QScintilla-${version}/QScintilla_gpl-${version}.zip";
url = "mirror://sourceforge/pyqt/QScintilla2/QScintilla-${version}/QScintilla_gpl-${version}.tar.gz";
sha256 = "04678skipydx68zf52vznsfmll2v9aahr66g50lcqbr6xsmgr1yi";
};

buildInputs = if withQt5 then [ qtbase ] else [ qt4 ];
nativeBuildInputs = [ unzip ] ++ (if withQt5 then [ qmakeHook ] else [ qmake4Hook ]);
nativeBuildInputs = [ (if withQt5 then qmakeHook else qmake4Hook) ];

enableParallelBuilding = true;

Expand Down

0 comments on commit 915e1d5

Please sign in to comment.