nixpkgs/pkgs/applications/misc/navit/default.nix
Lluís Batlle i Rossell 201d3ac791 Fixing the navit installation disabling the build of the sample map (so it does not have to
download anything at build time)

svn path=/nixpkgs/trunk/; revision=23347
2010-08-22 12:01:41 +00:00

24 lines
813 B
Nix

{ stdenv, fetchurl, pkgconfig, gtk, SDL, fontconfig, freetype, imlib2, SDL_image, mesa,
libXmu, freeglut, python, gettext, quesoglc, gd, postgresql }:
stdenv.mkDerivation rec {
name = "navit-0.1.1";
src = fetchurl {
url = mirror://sourceforge/navit/navit-0.1.1.tar.gz;
sha256 = "1zm1nlh2jhslanpxm07cgp8g6mkna5zcv6ahh4wg1f7x0rabylic";
};
buildInputs = [ pkgconfig gtk SDL fontconfig freetype imlib2 SDL_image mesa
libXmu freeglut python gettext quesoglc gd postgresql ];
configureFlags = [ "--disable-samplemap" ];
meta = {
homepage = http://www.navit-project.org/;
description = "Car navigation system with routing engine using OSM maps";
license = "GPLv2";
maintainers = with stdenv.lib.maintainers; [ viric ];
platforms = with stdenv.lib.platforms; linux;
};
}