2012-02-19 09:22:20 +00:00
|
|
|
{stdenv, fetchurl, pkgconfig, freetype, pango, libpng, libtiff, giflib
|
|
|
|
, libjpeg, netpbm}:
|
2009-09-11 15:06:51 +01:00
|
|
|
|
2012-02-19 09:22:14 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-12-07 10:57:15 +00:00
|
|
|
name = "xplanet-1.3.0";
|
2010-01-26 15:27:18 +00:00
|
|
|
|
2009-09-11 15:06:51 +01:00
|
|
|
src = fetchurl {
|
2012-02-19 09:22:14 +00:00
|
|
|
url = "mirror://sourceforge/xplanet/${name}.tar.gz";
|
2013-12-07 10:57:15 +00:00
|
|
|
sha256 = "0hml2v228wi2r61m1pgka7h96rl92b6apk0iigm62miyp4mp9ys4";
|
2009-09-11 15:06:51 +01:00
|
|
|
};
|
2010-01-26 15:27:18 +00:00
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ freetype pango libpng libtiff giflib libjpeg netpbm ];
|
2010-01-26 15:27:18 +00:00
|
|
|
|
2017-08-30 16:04:26 +01:00
|
|
|
patches = [
|
|
|
|
./giflib.patch
|
|
|
|
./gcc6.patch
|
|
|
|
];
|
2013-12-07 11:12:31 +00:00
|
|
|
|
2009-09-11 15:06:51 +01:00
|
|
|
meta = {
|
|
|
|
description = "Renders an image of the earth or other planets into the X root window";
|
|
|
|
homepage = http://xplanet.sourceforge.net;
|
|
|
|
license = "GPL";
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.sander ];
|
2012-02-19 09:22:20 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2009-09-11 15:06:51 +01:00
|
|
|
};
|
|
|
|
}
|