mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
f09e8383ce
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/routino/versions
28 lines
650 B
Nix
28 lines
650 B
Nix
{ stdenv, fetchurl, perl, zlib, bzip2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "routino";
|
|
version = "3.3.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://routino.org/download/${pname}-${version}.tgz";
|
|
sha256 = "1ccx3s99j8syxc1gqkzsaqkmyf44l7h3adildnc5iq2md7bp8wab";
|
|
};
|
|
|
|
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;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|