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

31 lines
796 B
Nix
Raw Normal View History

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