linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / qt5ct / default.nix
blob5b88030849d574f83e12464f581882911e5db3ce
1 { mkDerivation, lib, fetchurl, qtbase, qtsvg, qttools, qmake }:
3 let inherit (lib) getDev; in
5 mkDerivation rec {
6   pname = "qt5ct";
7   version = "1.1";
9   src = fetchurl {
10     url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
11     sha256 = "1lnx4wqk87lbr6lqc64w5g5ppjjv75kq2r0q0bz9gfpryzdw8xxg";
12   };
14   nativeBuildInputs = [ qmake qttools ];
16   buildInputs = [ qtbase qtsvg ];
18   qmakeFlags = [
19     "LRELEASE_EXECUTABLE=${getDev qttools}/bin/lrelease"
20     "PLUGINDIR=${placeholder "out"}/${qtbase.qtPluginPrefix}"
21   ];
23   enableParallelBuilding = true;
25   meta = with lib; {
26     description = "Qt5 Configuration Tool";
27     homepage = "https://www.opendesktop.org/content/show.php?content=168066";
28     platforms = platforms.linux;
29     license = licenses.bsd2;
30     maintainers = with maintainers; [ ralith ];
31   };