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

42 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fetchpatch, perl, zlib, bzip2 }:
2017-09-24 19:04:04 +00:00
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
};
2020-07-15 22:38:40 +00:00
patchFlags = [ "-p0" ];
patches = stdenv.lib.optionals stdenv.isDarwin [
(fetchpatch {
url = "https://raw.githubusercontent.com/macports/macports-ports/18fd229516a46e7272003acbe555735b2a902db7/gis/routino/files/patch-Makefile_conf.diff";
sha256 = "1b7hpa4sizansnwwxq1c031nxwdwh71pg08jl9z9apiab8pjsn53";
})
(fetchpatch {
url = "https://raw.githubusercontent.com/macports/macports-ports/18fd229516a46e7272003acbe555735b2a902db7/gis/routino/files/patch-src_Makefile_dylib_extension.diff";
sha256 = "1kigxcfr7977baxdsfvrw6q453cpqlzqakhj7av2agxkcvwyilpv";
})
];
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" ];
2020-07-15 22:38:40 +00:00
CLANG = stdenv.lib.optionalString stdenv.cc.isClang "1";
2017-09-28 17:29:49 +00:00
makeFlags = [ "prefix=$(out)" ];
2017-09-24 19:04:04 +00:00
meta = with lib; {
homepage = "http://www.routino.org/";
2017-09-24 19:04:04 +00:00
description = "OpenStreetMap Routing Software";
license = licenses.agpl3;
maintainers = with maintainers; [ dotlambda ];
2020-07-15 22:38:40 +00:00
platforms = with platforms; linux ++ darwin;
2017-09-24 19:04:04 +00:00
};
}