nixpkgs/pkgs/tools/misc/routino/default.nix

28 lines
650 B
Nix
Raw Normal View History

2017-09-24 19:04:04 +00:00
{ stdenv, fetchurl, perl, zlib, bzip2 }:
stdenv.mkDerivation rec {
pname = "routino";
version = "3.3.2";
2017-09-24 19:04:04 +00:00
src = fetchurl {
url = "https://routino.org/download/${pname}-${version}.tgz";
sha256 = "1ccx3s99j8syxc1gqkzsaqkmyf44l7h3adildnc5iq2md7bp8wab";
2017-09-24 19:04:04 +00:00
};
nativeBuildInputs = [ perl ];
2017-09-28 17:29:49 +00:00
2017-09-24 19:04:04 +00:00
buildInputs = [ zlib bzip2 ];
2017-09-28 17:29:49 +00:00
outputs = [ "out" "doc" ];
makeFlags = [ "prefix=$(out)" ];
2017-09-24 19:04:04 +00:00
meta = with stdenv.lib; {
homepage = http://www.routino.org/;
description = "OpenStreetMap Routing Software";
license = licenses.agpl3;
maintainers = with maintainers; [ dotlambda ];
2017-09-24 19:04:04 +00:00
platforms = with platforms; linux;
};
}