Merge pull request #70143 from jglukasik/Tirex

perlPackages.Tirex: init at 0.6.1
This commit is contained in:
Matthew Bauer 2019-11-07 17:13:50 -05:00 committed by GitHub
commit d5a4d1f35c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19317,6 +19317,41 @@ let
};
};
Tirex = buildPerlPackage rec {
pname = "Tirex";
version = "0.6.1";
src = fetchFromGitHub {
owner = "openstreetmap";
repo = "tirex";
rev = "v${version}";
sha256 = "0dskf50qm6yh3rx6j2nqydr1if71x6ik85hxsa2r9qgldcby2rgh";
};
buildInputs = [
GD
IPCShareLite
JSON
LWP
pkgs.cairo
pkgs.mapnik
pkgs.zlib
];
installPhase = ''
make install DESTDIR=$out INSTALLOPTS=""
mv $out/$out/lib $out/$out/share $out
rmdir $out/$out $out/nix/store $out/nix
'';
meta = {
description = "Tools for running a map tile server";
homepage = https://github.com/openstreetmap/tirex;
maintainers = with maintainers; [ jglukasik ];
license = with stdenv.lib.licenses; [ gpl2 ];
};
};
Tk = buildPerlPackage {
pname = "Tk";
version = "804.034";