nixpkgs/pkgs/applications/science/astronomy/xplanet/default.nix

28 lines
735 B
Nix
Raw Normal View History

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