t-rex: 0.14.3 → 0.15.0-alpha3

This commit is contained in:
Nikolay Korotkiy
2024-03-12 00:10:13 +04:00
parent 26ce32abdb
commit 21a16622ee
+5 -6
View File
@@ -2,18 +2,18 @@
rustPlatform.buildRustPackage rec {
pname = "t-rex";
version = "0.14.3";
version = "0.15.0-alpha3";
src = fetchFromGitHub {
owner = "t-rex-tileserver";
repo = pname;
repo = "t-rex";
rev = "v${version}";
hash = "sha256-LUVk5li2cl/LKbhKOh6Bbwav0GEuI/vUbDPLn7NSRIs=";
hash = "sha256-oZZrR86/acoyMX3vC1JGrpc8G+DEuplqfEAnaP+TBGU=";
};
cargoHash = "sha256-I4QmjTTKUp9iugEwzM0xCcNLvF5ozeBdYmbi8sytY88=";
cargoHash = "sha256-nxq4mX2Sy6Hyi8tA2CQsQwISB/kau4DEkAgIm4SvGns=";
nativeBuildInputs = [ pkg-config ];
nativeBuildInputs = [ pkg-config rustPlatform.bindgenHook ];
buildInputs = [ gdal openssl ] ++ lib.optional stdenv.isDarwin Security;
@@ -25,6 +25,5 @@ rustPlatform.buildRustPackage rec {
maintainers = teams.geospatial.members;
mainProgram = "t_rex";
platforms = platforms.unix;
broken = true; # https://github.com/t-rex-tileserver/t-rex/issues/302
};
}