qscintilla: 2.9 -> 2.9.4
This commit is contained in:
parent
9452abe684
commit
22dbb82129
@ -1,21 +1,21 @@
|
|||||||
{ stdenv, fetchurl
|
{ stdenv, fetchurl, unzip
|
||||||
, qt4 ? null, qmake4Hook ? null
|
, qt4 ? null, qmake4Hook ? null
|
||||||
, withQt5 ? false, qtbase ? null, qmakeHook ? null
|
, withQt5 ? false, qtbase ? null, qmakeHook ? null
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "qscintilla";
|
pname = "qscintilla";
|
||||||
version = "2.9";
|
version = "2.9.4";
|
||||||
|
|
||||||
name = "${pname}-${if withQt5 then "qt5" else "qt4"}-${version}";
|
name = "${pname}-${if withQt5 then "qt5" else "qt4"}-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/pyqt/QScintilla2/QScintilla-${version}/QScintilla-gpl-${version}.tar.gz";
|
url = "mirror://sourceforge/pyqt/QScintilla2/QScintilla-${version}/QScintilla_gpl-${version}.zip";
|
||||||
sha256 = "d7c32e32582f93779de861006d87467b38b9ebc06e3d0b32e981cb24369fa417";
|
sha256 = "04678skipydx68zf52vznsfmll2v9aahr66g50lcqbr6xsmgr1yi";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = if withQt5 then [ qtbase ] else [ qt4 ];
|
buildInputs = if withQt5 then [ qtbase ] else [ qt4 ];
|
||||||
nativeBuildInputs = if withQt5 then [ qmakeHook ] else [ qmake4Hook ];
|
nativeBuildInputs = [ unzip ] ++ (if withQt5 then [ qmakeHook ] else [ qmake4Hook ]);
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
@ -47,5 +47,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = http://www.riverbankcomputing.com/software/qscintilla/intro;
|
homepage = http://www.riverbankcomputing.com/software/qscintilla/intro;
|
||||||
license = with licenses; [ gpl2 gpl3 ]; # and commercial
|
license = with licenses; [ gpl2 gpl3 ]; # and commercial
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ peterhoeg ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user