stellarium: 0.15.0 -> 0.16.1
The 0.16-releases contain several useful new features: https://launchpad.net/stellarium/0.16/0.16.1 I also added myself as maintainer to have more people available if the package breaks a release.
This commit is contained in:
parent
daf8311ce1
commit
38af8ec720
|
@ -1,23 +1,23 @@
|
||||||
{ mkDerivation, lib, fetchurl
|
{ mkDerivation, lib, fetchurl
|
||||||
, cmake, freetype, libpng, mesa, gettext, openssl, perl, libiconv
|
, cmake, freetype, libpng, mesa, gettext, openssl, perl, libiconv
|
||||||
, qtscript, qtserialport, qttools
|
, qtscript, qtserialport, qttools
|
||||||
, qtmultimedia
|
, qtmultimedia, qtlocation
|
||||||
}:
|
}:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
name = "stellarium-${version}";
|
name = "stellarium-${version}";
|
||||||
version = "0.15.0";
|
version = "0.16.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/stellarium/${name}.tar.gz";
|
url = "mirror://sourceforge/stellarium/${name}.tar.gz";
|
||||||
sha256 = "0il751lgnfkx35h1m8fzwwnrygpxjx2a80gng1i1rbybkykf7l3l";
|
sha256 = "087x6mbcn2yj8d3qi382vfkzgdwmanxzqi5l1x3iranxmx9c40dh";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake perl ];
|
nativeBuildInputs = [ cmake perl ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
freetype libpng mesa openssl libiconv qtscript qtserialport qttools
|
freetype libpng mesa openssl libiconv qtscript qtserialport qttools
|
||||||
qtmultimedia
|
qtmultimedia qtlocation
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
@ -26,6 +26,6 @@ mkDerivation rec {
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
|
|
||||||
platforms = platforms.linux; # should be mesaPlatforms, but we don't have qt on darwin
|
platforms = platforms.linux; # should be mesaPlatforms, but we don't have qt on darwin
|
||||||
maintainers = [ maintainers.peti ];
|
maintainers = with maintainers; [ peti ma27 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue