2018-11-08 21:59:17 +00:00
|
|
|
{ stdenv, fetchFromGitHub, qmake, qtbase, qtscript }:
|
2017-07-01 15:25:20 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "qbs-${version}";
|
|
|
|
|
2018-12-14 16:14:10 +00:00
|
|
|
version = "1.12.2";
|
2017-07-01 15:25:20 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-11-08 21:59:17 +00:00
|
|
|
owner = "qbs";
|
2017-07-01 15:25:20 +01:00
|
|
|
repo = "qbs";
|
2018-11-08 21:59:17 +00:00
|
|
|
rev = "v${version}";
|
2018-12-14 16:14:10 +00:00
|
|
|
sha256 = "0spkkq7nmh27rbx61p23fzkxffx3qdhjqw95pqgsbc76xczd45sv";
|
2017-07-01 15:25:20 +01:00
|
|
|
};
|
|
|
|
|
2018-11-08 21:59:17 +00:00
|
|
|
nativeBuildInputs = [ qmake ];
|
2017-07-01 15:25:20 +01:00
|
|
|
|
2018-11-08 21:59:17 +00:00
|
|
|
qmakeFlags = [ "QBS_INSTALL_PREFIX=$(out)" "qbs.pro" ];
|
2017-07-01 15:25:20 +01:00
|
|
|
|
2018-11-08 21:59:17 +00:00
|
|
|
buildInputs = [ qtbase qtscript ];
|
2017-07-01 15:25:20 +01:00
|
|
|
|
2018-11-08 21:59:17 +00:00
|
|
|
enableParallelBuilding = true;
|
2017-07-01 15:25:20 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A tool that helps simplify the build process for developing projects across multiple platforms";
|
2018-11-08 21:59:17 +00:00
|
|
|
license = licenses.lgpl3;
|
2017-07-01 15:25:20 +01:00
|
|
|
maintainers = with maintainers; [ expipiplus1 ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|