Merge pull request #216948 from sikmir/martin

martin: 0.6.2 → 0.7.0

authored by Nikolay Korotkiy and committed by GitHub 52304581 5de1815b

+7 -5
+7 -5
pkgs/servers/geospatial/martin/default.nix
··· 1 - { lib, stdenv, rustPlatform, fetchFromGitHub, fetchpatch, Security }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "martin"; 5 - version = "0.6.2"; 6 7 src = fetchFromGitHub { 8 owner = "maplibre"; 9 repo = "martin"; 10 rev = "v${version}"; 11 - hash = "sha256-+XD4w6W6dyKuTItLQS0P/waksIVsPXVswcrCQ7jpw90="; 12 }; 13 14 - cargoHash = "sha256-U3oNyMS4S44ybAtt1/b0AXDLiag41XWt9DT5mKLQzm8="; 15 16 - buildInputs = lib.optional stdenv.isDarwin Security; 17 18 doCheck = false; 19
··· 1 + { lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, openssl, Security }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "martin"; 5 + version = "0.7.0"; 6 7 src = fetchFromGitHub { 8 owner = "maplibre"; 9 repo = "martin"; 10 rev = "v${version}"; 11 + hash = "sha256-UIAsij4fFxGAoKluQFAtrfgKIteM+LQtAKRDvRaNLSg="; 12 }; 13 14 + cargoHash = "sha256-NtPI8MZNUn+QYPuG9WNMVZJW6jmyi5gEfNw8MrkiwUQ="; 15 16 + nativeBuildInputs = [ pkg-config ]; 17 + 18 + buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security; 19 20 doCheck = false; 21