2016-04-16 13:02:33 -07:00
|
|
|
{ stdenv, fetchgit, qtbase, qtquick1, qmakeHook }:
|
2015-01-30 13:48:41 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "0.1.0";
|
|
|
|
name = "qmltermwidget-${version}";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/Swordfish90/qmltermwidget.git";
|
|
|
|
rev = "refs/tags/v${version}";
|
2016-06-02 04:26:44 -07:00
|
|
|
sha256 = "0ca500mzcqglkj0i6km0z512y3a025dbm24605xyv18l6y0l2ny3";
|
2015-01-30 13:48:41 -08:00
|
|
|
};
|
|
|
|
|
2015-09-27 08:21:30 -07:00
|
|
|
buildInputs = [ qtbase qtquick1 ];
|
2016-04-16 13:02:33 -07:00
|
|
|
nativeBuildInputs = [ qmakeHook ];
|
2015-01-30 13:48:41 -08:00
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace qmltermwidget.pro \
|
2016-01-01 03:00:11 -08:00
|
|
|
--replace '$$[QT_INSTALL_QML]' "/lib/qt5/qml/"
|
2015-01-30 13:48:41 -08:00
|
|
|
'';
|
|
|
|
|
2016-04-16 13:02:33 -07:00
|
|
|
installFlags = [ "INSTALL_ROOT=$(out)" ];
|
2015-03-24 08:31:27 -07:00
|
|
|
|
2015-01-30 13:48:41 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
2015-04-30 08:05:14 -07:00
|
|
|
description = "A QML port of qtermwidget";
|
2015-12-30 08:52:46 -08:00
|
|
|
homepage = "https://github.com/Swordfish90/qmltermwidget";
|
2015-05-28 10:20:29 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2015-01-30 13:48:41 -08:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ skeidel ];
|
|
|
|
};
|
|
|
|
}
|