forked from mirrors/nixpkgs
Adding 'navit' (it still does not build because it wants to download maps)
svn path=/nixpkgs/trunk/; revision=23346
This commit is contained in:
parent
cbec86d7d1
commit
86d5e94cda
21
pkgs/applications/misc/navit/default.nix
Normal file
21
pkgs/applications/misc/navit/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{ 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 ];
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -5859,6 +5859,10 @@ let
|
||||||
|
|
||||||
nano = callPackage ../applications/editors/nano { };
|
nano = callPackage ../applications/editors/nano { };
|
||||||
|
|
||||||
|
navit = callPackage ../applications/misc/navit {
|
||||||
|
inherit (gtkLibs) gtk;
|
||||||
|
};
|
||||||
|
|
||||||
nedit = callPackage ../applications/editors/nedit {
|
nedit = callPackage ../applications/editors/nedit {
|
||||||
motif = lesstif;
|
motif = lesstif;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue