mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 04:12:44 +03:00
qt5ct: 0.33 -> 0.34
This commit is contained in:
parent
ec8731e7fa
commit
346cfb8a59
@ -4,24 +4,27 @@ let inherit (stdenv.lib) getDev; in
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "qt5ct-${version}";
|
name = "qt5ct-${version}";
|
||||||
version = "0.33";
|
version = "0.34";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/qt5ct/qt5ct-${version}.tar.bz2";
|
url = "mirror://sourceforge/qt5ct/${name}.tar.bz2";
|
||||||
sha256 = "0by0wz40rl9gxvwbd85j0y5xy9mjab1cya96rv48x677v95lhm9f";
|
sha256 = "0aqbilz7acx077zg5rwf2909xabw16047yjdn9nx2gmhp31y00pl";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ qtbase qtsvg qttools ];
|
nativeBuildInputs = [ qmake qttools ];
|
||||||
nativeBuildInputs = [ qmake ];
|
|
||||||
|
|
||||||
buildInputs = [ qtbase qtsvg ];
|
buildInputs = [ qtbase ];
|
||||||
|
|
||||||
qmakeFlags = [ ''LRELEASE_EXECUTABLE=${getDev qttools}/bin/lrelease'' ];
|
qmakeFlags = [
|
||||||
|
"LRELEASE_EXECUTABLE=${getDev qttools}/bin/lrelease"
|
||||||
|
];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
qmakeFlags="$qmakeFlags PLUGINDIR=$out/$qtPluginPrefix"
|
qmakeFlags+=" PLUGINDIR=$out/$qtPluginPrefix"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Qt5 Configuration Tool";
|
description = "Qt5 Configuration Tool";
|
||||||
homepage = https://www.opendesktop.org/content/show.php?content=168066;
|
homepage = https://www.opendesktop.org/content/show.php?content=168066;
|
||||||
|
Loading…
Reference in New Issue
Block a user