From 201d3ac79152e6de0f3b766597264012c44f46d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sun, 22 Aug 2010 12:01:41 +0000 Subject: [PATCH] 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 --- pkgs/applications/misc/navit/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/misc/navit/default.nix b/pkgs/applications/misc/navit/default.nix index 5768996a8b7..c26c52ef7ac 100644 --- a/pkgs/applications/misc/navit/default.nix +++ b/pkgs/applications/misc/navit/default.nix @@ -11,6 +11,8 @@ stdenv.mkDerivation rec { 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";