nixpkgs/pkgs/tools/misc/qt5ct/default.nix

33 lines
830 B
Nix
Raw Normal View History

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