2010-08-22 14:07:03 +02:00
|
|
|
{ stdenv, fetchsvn, pkgconfig, gtk, SDL, fontconfig, freetype, imlib2, SDL_image, mesa,
|
|
|
|
libXmu, freeglut, python, gettext, quesoglc, gd, postgresql, autoconf, automake, libtool, cvs }:
|
2010-08-22 13:33:57 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2010-08-22 14:07:03 +02:00
|
|
|
name = "navit-svn-3537";
|
2010-08-22 13:33:57 +02:00
|
|
|
|
2010-08-22 14:07:03 +02:00
|
|
|
src = fetchsvn {
|
|
|
|
url = https://navit.svn.sourceforge.net/svnroot/navit/trunk/navit;
|
|
|
|
rev = 3537;
|
|
|
|
sha256 = "1ajd439i7z8xm16kqh20qalvafy9miyy4accc8j7w30c4qgc2bb7";
|
2010-08-22 13:33:57 +02:00
|
|
|
};
|
|
|
|
|
2010-08-22 14:07:03 +02:00
|
|
|
# 'cvs' is only for the autogen
|
2010-08-22 13:33:57 +02:00
|
|
|
buildInputs = [ pkgconfig gtk SDL fontconfig freetype imlib2 SDL_image mesa
|
2010-08-22 14:07:03 +02:00
|
|
|
libXmu freeglut python gettext quesoglc gd postgresql
|
|
|
|
autoconf automake libtool cvs ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
sh ./autogen.sh
|
|
|
|
'';
|
2010-08-22 13:33:57 +02:00
|
|
|
|
2010-08-22 14:01:41 +02:00
|
|
|
configureFlags = [ "--disable-samplemap" ];
|
|
|
|
|
2010-08-22 13:33:57 +02:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|