2018-01-14 17:47:42 +00:00
|
|
|
{ stdenv, fetchFromGitHub, qtbase, qtquick1, qmake, qtmultimedia }:
|
2015-01-30 21:48:41 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "0.1.0";
|
|
|
|
name = "qmltermwidget-${version}";
|
|
|
|
|
2018-01-14 17:47:42 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "qmltermwidget";
|
|
|
|
owner = "Swordfish90";
|
|
|
|
rev = "v${version}";
|
2016-06-02 11:26:44 +00:00
|
|
|
sha256 = "0ca500mzcqglkj0i6km0z512y3a025dbm24605xyv18l6y0l2ny3";
|
2015-01-30 21:48:41 +00:00
|
|
|
};
|
|
|
|
|
2017-03-02 13:13:02 +00:00
|
|
|
buildInputs = [ qtbase qtquick1 qtmultimedia ];
|
2017-06-02 15:40:19 +00:00
|
|
|
nativeBuildInputs = [ qmake ];
|
2015-01-30 21:48:41 +00:00
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace qmltermwidget.pro \
|
2017-05-15 11:44:33 +00:00
|
|
|
--replace '$$[QT_INSTALL_QML]' "/$qtQmlPrefix/"
|
2015-01-30 21:48:41 +00:00
|
|
|
'';
|
|
|
|
|
2016-04-16 20:02:33 +00:00
|
|
|
installFlags = [ "INSTALL_ROOT=$(out)" ];
|
2015-03-24 15:31:27 +00:00
|
|
|
|
2015-01-30 21:48:41 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
2015-04-30 15:05:14 +00:00
|
|
|
description = "A QML port of qtermwidget";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = https://github.com/Swordfish90/qmltermwidget;
|
2015-05-28 17:20:29 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2015-01-30 21:48:41 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ skeidel ];
|
|
|
|
};
|
|
|
|
}
|