stellarium: 0.22.2 -> 1.0
This commit is contained in:
parent
15bf223df9
commit
ffb43186dc
@ -1,25 +1,51 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub
|
{ lib
|
||||||
, cmake, freetype, libpng, libGLU, libGL, openssl, perl, libiconv
|
, stdenv
|
||||||
, qtscript, qtserialport, qttools, qtcharts
|
, fetchFromGitHub
|
||||||
, qtmultimedia, qtlocation, qtbase, wrapQtAppsHook
|
, cmake
|
||||||
|
, perl
|
||||||
|
, wrapQtAppsHook
|
||||||
|
, qtbase
|
||||||
|
, qtcharts
|
||||||
|
, qtlocation
|
||||||
|
, qtmultimedia
|
||||||
|
, qtscript
|
||||||
|
, qtserialport
|
||||||
|
, qtwebengine
|
||||||
|
, calcmysky
|
||||||
|
, qxlsx
|
||||||
|
, indilib
|
||||||
|
, libnova
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "stellarium";
|
pname = "stellarium";
|
||||||
version = "0.22.2";
|
version = "1.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Stellarium";
|
owner = "Stellarium";
|
||||||
repo = "stellarium";
|
repo = "stellarium";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-FBH5IB1keMzRP06DQK2e7HX8rwm5/sdTX+cB80uG0vw=";
|
sha256 = "sha256-6EAykJ0yWeU1EBR5+7JjWGUVBE1DKW+W8yJOt0smkaE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake perl wrapQtAppsHook ];
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
perl
|
||||||
|
wrapQtAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
freetype libpng libGLU libGL openssl libiconv qtscript qtserialport qttools
|
qtbase
|
||||||
qtmultimedia qtlocation qtbase qtcharts
|
qtcharts
|
||||||
|
qtlocation
|
||||||
|
qtmultimedia
|
||||||
|
qtscript
|
||||||
|
qtserialport
|
||||||
|
qtwebengine
|
||||||
|
calcmysky
|
||||||
|
qxlsx
|
||||||
|
indilib
|
||||||
|
libnova
|
||||||
];
|
];
|
||||||
|
|
||||||
preConfigure = lib.optionalString stdenv.isDarwin ''
|
preConfigure = lib.optionalString stdenv.isDarwin ''
|
||||||
|
Loading…
Reference in New Issue
Block a user