commit
ebe52a7c54
27
pkgs/tools/misc/routino/default.nix
Normal file
27
pkgs/tools/misc/routino/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchurl, perl, zlib, bzip2 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "routino-${version}";
|
||||
version = "3.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://routino.org/download/${name}.tgz";
|
||||
sha256 = "0lkmpi8gn7qf40cx93jcp7nxa9dfwi1d6rjrhcqbdymszzm33972";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ perl ];
|
||||
|
||||
buildInputs = [ zlib bzip2 ];
|
||||
|
||||
outputs = [ "out" "doc" ];
|
||||
|
||||
makeFlags = [ "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;
|
||||
};
|
||||
}
|
@ -4181,6 +4181,8 @@ with pkgs;
|
||||
|
||||
rnv = callPackage ../tools/text/xml/rnv { };
|
||||
|
||||
routino = callPackage ../tools/misc/routino { };
|
||||
|
||||
rq = callPackage ../development/tools/rq {
|
||||
v8 = v8_static;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user