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