2012-12-25 11:26:53 +01:00
|
|
|
{ stdenv, fetchurl, freeglut, gtk2, gtkglext, libjpeg_turbo, libtheora, libXmu
|
2019-11-10 17:44:34 +01:00
|
|
|
, lua, libGLU, libGL, pkgconfig, perl, autoreconfHook
|
2012-12-25 11:26:53 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
name = "celestia-1.6.1";
|
|
|
|
|
|
|
|
gcc46Patch = fetchurl {
|
|
|
|
url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk/celestia-1.6.1-gcc46.patch?h=packages/celestia";
|
2013-06-18 11:44:40 +02:00
|
|
|
sha256 = "0my7dpyh5wpz5df7bjhwb4db3ci2rn8ib1nkjv15fbp1g76bxfaz";
|
2012-12-25 11:26:53 +01:00
|
|
|
name = "celestia-1.6.1-gcc46.patch";
|
|
|
|
};
|
|
|
|
|
|
|
|
libpng15Patch = fetchurl {
|
|
|
|
url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk/celestia-1.6.1-libpng15.patch?h=packages/celestia";
|
2013-06-18 11:44:40 +02:00
|
|
|
sha256 = "1jrmbwmvs9b6k2b2g4104q22v4vqi0wfpz6hmfhniaq34626jcms";
|
2012-12-25 11:26:53 +01:00
|
|
|
name = "celestia-1.6.1-libpng15.patch";
|
|
|
|
};
|
|
|
|
|
2013-06-18 11:51:11 +02:00
|
|
|
libpng16Patch = fetchurl {
|
|
|
|
url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk/celestia-1.6.1-libpng16.patch?h=packages/celestia";
|
|
|
|
sha256 = "1q85prw4ci6d50lri8w1jm19pghxw96qizf5dl4g0j86rlhlkc8f";
|
|
|
|
name = "celestia-1.6.1-libpng16.patch";
|
|
|
|
};
|
|
|
|
|
2012-12-25 11:26:53 +01:00
|
|
|
linkingPatch = fetchurl {
|
|
|
|
url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk/celestia-1.6.1-linking.patch?h=packages/celestia";
|
2013-06-18 11:44:40 +02:00
|
|
|
sha256 = "1m8xyq26nm352828bp12c3b8f6m9bys9fwfxbfzqppllk7il2f24";
|
2012-12-25 11:26:53 +01:00
|
|
|
name = "celestia-1.6.1-linking.patch";
|
|
|
|
};
|
|
|
|
|
|
|
|
gcc47Patch = fetchurl {
|
|
|
|
url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk/gcc-4.7-fixes.diff?h=packages/celestia";
|
2013-06-18 11:44:40 +02:00
|
|
|
sha256 = "1na26c7pv9qfv8a981m1zvglhv05r3h8513xqjra91qhhzx8wr8n";
|
2012-12-25 11:26:53 +01:00
|
|
|
name = "gcc-4.7-fixes.diff";
|
|
|
|
};
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit name;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/celestia/${name}.tar.gz";
|
|
|
|
sha256 = "1i1lvhbgllsh2z8i6jj4mvrjak4a7r69psvk7syw03s4p7670mfk";
|
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-11-10 17:44:34 +01:00
|
|
|
buildInputs = [ freeglut gtk2 gtkglext libjpeg_turbo libtheora libXmu libGLU libGL lua
|
2016-01-18 00:04:40 +01:00
|
|
|
perl autoreconfHook ];
|
2012-12-25 11:26:53 +01:00
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
patch -Np0 -i "${gcc46Patch}"
|
|
|
|
patch -Np0 -i "${libpng15Patch}"
|
2013-06-18 11:51:11 +02:00
|
|
|
patch -Np2 -i "${libpng16Patch}"
|
2012-12-25 11:26:53 +01:00
|
|
|
patch -Np1 -i "${linkingPatch}"
|
|
|
|
patch -Np1 -i "${gcc47Patch}"
|
|
|
|
'';
|
|
|
|
|
2018-04-15 17:21:11 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--with-gtk"
|
|
|
|
"--with-lua=${lua}"
|
|
|
|
];
|
2016-01-18 00:04:40 +01:00
|
|
|
|
2014-02-16 18:18:35 +01:00
|
|
|
installPhase = ''make MKDIR_P="mkdir -p" install'';
|
2014-01-05 10:42:55 +01:00
|
|
|
|
2012-12-25 11:26:53 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Free space simulation";
|
2018-04-15 17:21:11 +02:00
|
|
|
homepage = https://celestia.space/;
|
2012-12-25 11:26:53 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2016-05-16 22:30:20 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.peti ];
|
2012-12-25 11:26:53 +01:00
|
|
|
};
|
|
|
|
}
|