qt5: remove makeQtWrapper
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
{ stdenv, fetchurl, cmake, freetype, libpng, mesa, gettext, openssl, perl, libiconv
|
||||
, qtscript, qtserialport, qttools, makeQtWrapper
|
||||
{ mkDerivation, lib, fetchurl
|
||||
, cmake, freetype, libpng, mesa, gettext, openssl, perl, libiconv
|
||||
, qtscript, qtserialport, qttools
|
||||
, qtmultimedia
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
mkDerivation rec {
|
||||
name = "stellarium-${version}";
|
||||
version = "0.15.0";
|
||||
|
||||
@@ -12,25 +13,19 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0il751lgnfkx35h1m8fzwwnrygpxjx2a80gng1i1rbybkykf7l3l";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeQtWrapper ];
|
||||
nativeBuildInputs = [ cmake perl ];
|
||||
|
||||
buildInputs = [
|
||||
cmake freetype libpng mesa gettext openssl perl libiconv qtscript
|
||||
qtserialport qttools qtmultimedia
|
||||
freetype libpng mesa openssl libiconv qtscript qtserialport qttools
|
||||
qtmultimedia
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
postInstall = ''
|
||||
wrapQtProgram "$out/bin/stellarium"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "Free open-source planetarium";
|
||||
homepage = "http://stellarium.org/";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
license = licenses.gpl2;
|
||||
|
||||
platforms = stdenv.lib.platforms.linux; # should be mesaPlatforms, but we don't have qt on darwin
|
||||
maintainers = [ stdenv.lib.maintainers.peti ];
|
||||
platforms = platforms.linux; # should be mesaPlatforms, but we don't have qt on darwin
|
||||
maintainers = [ maintainers.peti ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user