nixpkgs/pkgs/development/libraries/qmltermwidget/default.nix
Tobias Geerinckx-Rice 158e1cfdd0 Don't use "with licenses;" for single licences
And don't use square brackets on such lines.
2015-05-28 19:20:29 +02:00

34 lines
864 B
Nix

{ stdenv, fetchgit, qt5 }:
stdenv.mkDerivation rec {
version = "0.1.0";
name = "qmltermwidget-${version}";
src = fetchgit {
url = "https://github.com/Swordfish90/qmltermwidget.git";
rev = "refs/tags/v${version}";
sha256 = "19pz27jsdpa3pybj8sghmmd1zqgr73js1mp3875rhx158dav37nz";
};
buildInputs = [ qt5.base qt5.quick1 ];
patchPhase = ''
substituteInPlace qmltermwidget.pro \
--replace '$$[QT_INSTALL_QML]' "/lib/qml/"
'';
configurePhase = "qmake PREFIX=$out";
installPhase=''make INSTALL_ROOT="$out" install'';
enableParallelBuilding = true;
meta = {
description = "A QML port of qtermwidget";
homepage = "https://github.com/Swordifish90/qmltermwidget";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ skeidel ];
};
}