summary refs log blame commit diff
path: root/pkgs/tools/misc/routino/default.nix
blob: 2629b8fd5d89d4e7e7046e1ac9283b2e19a3fa52 (plain) (tree)























                                                                    
{ stdenv, fetchurl, perl, zlib, bzip2 }:

stdenv.mkDerivation rec {
  name = "Routino-${version}";
  version = "3.2";

  src = fetchurl {
    url = "http://routino.org/download/routino-${version}.tgz";
    sha256 = "0lkmpi8gn7qf40cx93jcp7nxa9dfwi1d6rjrhcqbdymszzm33972";
  };

  nativeBuildInputs = [ perl ];
  buildInputs = [ zlib bzip2 ];

  installFlags = [ "prefix=$(out)" ];

  meta = with stdenv.lib; {
    homepage = http://www.routino.org/;
    description = "OpenStreetMap Routing Software";
    license = licenses.agpl3;
    maintainter = with maintainers; [ dotlambda ];
    platforms = with platforms; linux;
  };
}