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

36 lines
837 B
Nix
Raw Normal View History

{ stdenv, fetchurl, qtbase, qttools, qmake }:
2016-07-19 04:44:46 +01:00
2017-10-24 12:46:29 +01:00
let inherit (stdenv.lib) getDev; in
2016-07-19 04:44:46 +01:00
stdenv.mkDerivation rec {
name = "qt5ct-${version}";
version = "0.36";
2016-07-19 04:44:46 +01:00
src = fetchurl {
2017-11-26 22:30:21 +00:00
url = "mirror://sourceforge/qt5ct/${name}.tar.bz2";
sha256 = "12gfhchp05xn311zsxh41k3anyrscg53r5d06dasyxyk6hpr9hwg";
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
2017-11-26 22:30:21 +00:00
buildInputs = [ qtbase ];
2017-05-26 13:23:47 +01:00
2017-11-26 22:30:21 +00:00
qmakeFlags = [
"LRELEASE_EXECUTABLE=${getDev qttools}/bin/lrelease"
];
2017-10-24 12:46:29 +01:00
2016-07-19 04:44:46 +01:00
preConfigure = ''
2017-11-26 22:30:21 +00:00
qmakeFlags+=" PLUGINDIR=$out/$qtPluginPrefix"
2016-07-19 04:44:46 +01:00
'';
2017-11-26 22:30:21 +00:00
enableParallelBuilding = true;
2016-07-19 04:44:46 +01:00
meta = with stdenv.lib; {
description = "Qt5 Configuration Tool";
homepage = https://www.opendesktop.org/content/show.php?content=168066;
platforms = platforms.linux;
license = licenses.bsd2;
maintainers = with maintainers; [ ralith ];
};
}