tilemaker: 2.2.0 → 2.3.0
This commit is contained in:
parent
ecfff018eb
commit
d1323857f8
1 changed files with 3 additions and 10 deletions
|
@ -3,23 +3,15 @@
|
||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "tilemaker";
|
pname = "tilemaker";
|
||||||
version = "2.2.0";
|
version = "2.3.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "systemed";
|
owner = "systemed";
|
||||||
repo = "tilemaker";
|
repo = "tilemaker";
|
||||||
rev = "v${finalAttrs.version}";
|
rev = "v${finalAttrs.version}";
|
||||||
hash = "sha256-st6WDCk1RZ2lbfrudtcD+zenntyTMRHrIXw3nX5FHOU=";
|
hash = "sha256-O1zoRYNUeReIH2ZpL05SiwCZrZrM2IAkwhsP30k/hHc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
|
||||||
# Fix build with Boost >= 1.79, remove on next upstream release
|
|
||||||
(fetchpatch {
|
|
||||||
url = "https://github.com/systemed/tilemaker/commit/252e7f2ad8938e38d51783d1596307dcd27ed269.patch";
|
|
||||||
hash = "sha256-YSkhmpzEYk/mxVPSDYdwZclooB3zKRjDPzqamv6Nvyc=";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace src/tilemaker.cpp \
|
substituteInPlace src/tilemaker.cpp \
|
||||||
--replace "config.json" "$out/share/tilemaker/config-openmaptiles.json" \
|
--replace "config.json" "$out/share/tilemaker/config-openmaptiles.json" \
|
||||||
|
@ -48,6 +40,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Make OpenStreetMap vector tiles without the stack";
|
description = "Make OpenStreetMap vector tiles without the stack";
|
||||||
homepage = "https://tilemaker.org/";
|
homepage = "https://tilemaker.org/";
|
||||||
|
changelog = "https://github.com/systemed/tilemaker/blob/v${version}/CHANGELOG.md";
|
||||||
license = licenses.free; # FTWPL
|
license = licenses.free; # FTWPL
|
||||||
maintainers = with maintainers; [ sikmir ];
|
maintainers = with maintainers; [ sikmir ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
|
Loading…
Reference in a new issue