summary refs log tree commit diff
path: root/pkgs/servers/geospatial
diff options
context:
space:
mode:
authorNikolay Korotkiy <sikmir@disroot.org>2023-02-18 15:56:26 +0300
committerNikolay Korotkiy <sikmir@disroot.org>2023-02-18 16:11:47 +0300
commita49354a8c6c3238498d28ff8cb5dad1461438d00 (patch)
tree6100dce0fd9403f969755c22da4aaa8a09609e7d /pkgs/servers/geospatial
parentef56f34e07c157e5b9b694c0be2c8d2125239cb3 (diff)
downloadnixpkgs-a49354a8c6c3238498d28ff8cb5dad1461438d00.tar
nixpkgs-a49354a8c6c3238498d28ff8cb5dad1461438d00.tar.gz
nixpkgs-a49354a8c6c3238498d28ff8cb5dad1461438d00.tar.bz2
nixpkgs-a49354a8c6c3238498d28ff8cb5dad1461438d00.tar.lz
nixpkgs-a49354a8c6c3238498d28ff8cb5dad1461438d00.tar.xz
nixpkgs-a49354a8c6c3238498d28ff8cb5dad1461438d00.tar.zst
nixpkgs-a49354a8c6c3238498d28ff8cb5dad1461438d00.zip
martin: 0.6.2 → 0.7.0
Diffstat (limited to 'pkgs/servers/geospatial')
-rw-r--r--pkgs/servers/geospatial/martin/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/servers/geospatial/martin/default.nix b/pkgs/servers/geospatial/martin/default.nix
index a187259db69..21247ce2aff 100644
--- a/pkgs/servers/geospatial/martin/default.nix
+++ b/pkgs/servers/geospatial/martin/default.nix
@@ -1,19 +1,21 @@
-{ lib, stdenv, rustPlatform, fetchFromGitHub, fetchpatch, Security }:
+{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, openssl, Security }:
 
 rustPlatform.buildRustPackage rec {
   pname = "martin";
-  version = "0.6.2";
+  version = "0.7.0";
 
   src = fetchFromGitHub {
     owner = "maplibre";
     repo = "martin";
     rev = "v${version}";
-    hash = "sha256-+XD4w6W6dyKuTItLQS0P/waksIVsPXVswcrCQ7jpw90=";
+    hash = "sha256-UIAsij4fFxGAoKluQFAtrfgKIteM+LQtAKRDvRaNLSg=";
   };
 
-  cargoHash = "sha256-U3oNyMS4S44ybAtt1/b0AXDLiag41XWt9DT5mKLQzm8=";
+  cargoHash = "sha256-NtPI8MZNUn+QYPuG9WNMVZJW6jmyi5gEfNw8MrkiwUQ=";
 
-  buildInputs = lib.optional stdenv.isDarwin Security;
+  nativeBuildInputs = [ pkg-config ];
+
+  buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
 
   doCheck = false;