nixpkgs/pkgs/applications/science/xplanet/default.nix
2009-09-11 14:06:51 +00:00

17 lines
589 B
Nix

{stdenv, fetchurl, lib, pkgconfig, freetype, pango, libpng, libtiff, giflib, libjpeg}:
stdenv.mkDerivation {
name = "xplanet-1.2.1";
src = fetchurl {
url = mirror://sourceforge/xplanet/xplanet-1.2.1.tar.gz;
sha256 = "1pp55a1rgjkfcrwc00y3l48fhpqcp3qagd1zbym6zg27fzi5fbgm";
};
buildInputs = [ pkgconfig freetype pango libpng libtiff giflib libjpeg ];
meta = {
description = "Renders an image of the earth or other planets into the X root window";
homepage = http://xplanet.sourceforge.net;
license = "GPL";
maintainers = [ lib.maintainers.sander ];
};
}