summary refs log tree commit diff
diff options
context:
space:
mode:
authorNikolay Korotkiy <sikmir@disroot.org>2023-03-08 13:20:12 +0400
committerNikolay Korotkiy <sikmir@disroot.org>2023-03-08 13:23:00 +0400
commitd1323857f853e14b4f45a6f18ae9907065653aff (patch)
tree59da066a97a699d2b080a1fe343cf181fdefd6e6
parentecfff018eb859fe3d77f3c27a61c7cc11fe54d52 (diff)
downloadnixpkgs-d1323857f853e14b4f45a6f18ae9907065653aff.tar
nixpkgs-d1323857f853e14b4f45a6f18ae9907065653aff.tar.gz
nixpkgs-d1323857f853e14b4f45a6f18ae9907065653aff.tar.bz2
nixpkgs-d1323857f853e14b4f45a6f18ae9907065653aff.tar.lz
nixpkgs-d1323857f853e14b4f45a6f18ae9907065653aff.tar.xz
nixpkgs-d1323857f853e14b4f45a6f18ae9907065653aff.tar.zst
nixpkgs-d1323857f853e14b4f45a6f18ae9907065653aff.zip
tilemaker: 2.2.0 → 2.3.0
-rw-r--r--pkgs/applications/misc/tilemaker/default.nix13
1 files changed, 3 insertions, 10 deletions
diff --git a/pkgs/applications/misc/tilemaker/default.nix b/pkgs/applications/misc/tilemaker/default.nix
index a158badc884..de5a7490f5c 100644
--- a/pkgs/applications/misc/tilemaker/default.nix
+++ b/pkgs/applications/misc/tilemaker/default.nix
@@ -3,23 +3,15 @@
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "tilemaker";
-  version = "2.2.0";
+  version = "2.3.0";
 
   src = fetchFromGitHub {
     owner = "systemed";
     repo = "tilemaker";
     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 = ''
     substituteInPlace src/tilemaker.cpp \
       --replace "config.json" "$out/share/tilemaker/config-openmaptiles.json" \
@@ -48,6 +40,7 @@ stdenv.mkDerivation (finalAttrs: {
   meta = with lib; {
     description = "Make OpenStreetMap vector tiles without the stack";
     homepage = "https://tilemaker.org/";
+    changelog = "https://github.com/systemed/tilemaker/blob/v${version}/CHANGELOG.md";
     license = licenses.free; # FTWPL
     maintainers = with maintainers; [ sikmir ];
     platforms = platforms.unix;