6a29e3bf21
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/qbs/versions
31 lines
758 B
Nix
31 lines
758 B
Nix
{ stdenv, fetchFromGitHub, qmake, qtbase, qtscript }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "qbs";
|
|
|
|
version = "1.14.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "qbs";
|
|
repo = "qbs";
|
|
rev = "v${version}";
|
|
sha256 = "19adxjyp5bf5hrjisv3ff9ndcmh1glrxfrzifs46xjn3r69kyv1k";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake ];
|
|
|
|
qmakeFlags = [ "QBS_INSTALL_PREFIX=$(out)" "qbs.pro" ];
|
|
|
|
buildInputs = [ qtbase qtscript ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A tool that helps simplify the build process for developing projects across multiple platforms";
|
|
homepage = "https://wiki.qt.io/Qbs";
|
|
license = licenses.lgpl3;
|
|
maintainers = with maintainers; [ expipiplus1 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|