nixpkgs/pkgs/tools/misc/routino/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

28 lines
646 B
Nix

{ stdenv, fetchurl, perl, zlib, bzip2 }:
stdenv.mkDerivation rec {
name = "routino-${version}";
version = "3.2";
src = fetchurl {
url = "https://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;
maintainers = with maintainers; [ dotlambda ];
platforms = with platforms; linux;
};
}