2019-10-01 06:15:53 +01:00
|
|
|
{ mkDerivation, lib, fetchurl, qtbase, qtsvg, qttools, qmake }:
|
2016-07-19 04:44:46 +01:00
|
|
|
|
2019-07-29 06:04:36 +01:00
|
|
|
let inherit (lib) getDev; in
|
2017-10-24 12:46:29 +01:00
|
|
|
|
2019-07-29 06:04:36 +01:00
|
|
|
mkDerivation rec {
|
2019-03-22 19:23:28 +00:00
|
|
|
pname = "qt5ct";
|
2020-08-18 06:11:14 +01:00
|
|
|
version = "1.1";
|
2016-07-19 04:44:46 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-03-22 19:23:28 +00:00
|
|
|
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
|
2020-08-18 06:11:14 +01:00
|
|
|
sha256 = "1lnx4wqk87lbr6lqc64w5g5ppjjv75kq2r0q0bz9gfpryzdw8xxg";
|
2016-07-19 04:44:46 +01:00
|
|
|
};
|
|
|
|
|
2017-11-26 22:30:21 +00:00
|
|
|
nativeBuildInputs = [ qmake qttools ];
|
2016-07-19 04:44:46 +01:00
|
|
|
|
2019-10-01 06:15:53 +01:00
|
|
|
buildInputs = [ qtbase qtsvg ];
|
2017-05-26 13:23:47 +01:00
|
|
|
|
2017-11-26 22:30:21 +00:00
|
|
|
qmakeFlags = [
|
|
|
|
"LRELEASE_EXECUTABLE=${getDev qttools}/bin/lrelease"
|
2019-10-01 06:15:53 +01:00
|
|
|
"PLUGINDIR=${placeholder "out"}/${qtbase.qtPluginPrefix}"
|
2017-11-26 22:30:21 +00:00
|
|
|
];
|
2017-10-24 12:46:29 +01:00
|
|
|
|
2019-07-29 06:04:36 +01:00
|
|
|
meta = with lib; {
|
2016-07-19 04:44:46 +01:00
|
|
|
description = "Qt5 Configuration Tool";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.opendesktop.org/content/show.php?content=168066";
|
2016-07-19 04:44:46 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ ralith ];
|
|
|
|
};
|
|
|
|
}
|