-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Backport release-24.05] versatiles: init at 0.12.10 (#352358)
- Loading branch information
Showing
2 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21222,6 +21222,13 @@ | |
githubId = 1215623; | ||
keys = [ { fingerprint = "DA03 D6C6 3F58 E796 AD26 E99B 366A 2940 479A 06FC"; } ]; | ||
}; | ||
wilhelmines = { | ||
email = "[email protected]"; | ||
matrix = "@wilhelmines:matrix.org"; | ||
name = "Ronja Schwarz"; | ||
github = "wilhelmines"; | ||
githubId = 71409721; | ||
}; | ||
willbush = { | ||
email = "[email protected]"; | ||
matrix = "@willbush:matrix.org"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
lib, | ||
fetchFromGitHub, | ||
rustPlatform, | ||
}: | ||
|
||
rustPlatform.buildRustPackage rec { | ||
pname = "versatiles"; | ||
version = "0.12.10"; # When updating: Replace with current version | ||
|
||
src = fetchFromGitHub { | ||
owner = "versatiles-org"; | ||
repo = "versatiles-rs"; | ||
rev = "refs/tags/v${version}"; # When updating: Replace with long commit hash of new version | ||
hash = "sha256-LKUpxsAy39dX8hESlUEVs4rkOpYsd7kbATfnU1QYd9Q="; # When updating: Use `lib.fakeHash` for recomputing the hash once. Run: 'nix-build -A versatiles'. Swap with new hash and proceed. | ||
}; | ||
|
||
cargoHash = "sha256-dkFnoQY1+VNNrjS+o5Y0cvhWKoHt38KJKyNhCQ0dGaY="; # When updating: Same as above | ||
|
||
# Testing only necessary for the `bins` and `lib` features | ||
cargoTestFlags = [ | ||
"--bins" | ||
"--lib" | ||
]; | ||
|
||
# Skip tests that require network access | ||
checkFlags = [ | ||
"--skip tools::convert::tests::test_remote1" | ||
"--skip tools::convert::tests::test_remote2" | ||
"--skip tools::probe::tests::test_remote" | ||
"--skip tools::serve::tests::test_remote" | ||
"--skip utils::io::data_reader_http" | ||
"--skip utils::io::data_reader_http::tests::read_range_git" | ||
"--skip utils::io::data_reader_http::tests::read_range_googleapis" | ||
]; | ||
|
||
meta = { | ||
description = "Toolbox for converting, checking and serving map tiles in various formats"; | ||
longDescription = '' | ||
VersaTiles is a Rust-based project designed for processing and serving tile data efficiently. | ||
It supports multiple tile formats and offers various functionalities for handling tile data. | ||
''; | ||
homepage = "https://versatiles.org/"; | ||
downloadPage = "https://github.com/versatiles-org/versatiles-rs"; | ||
changelog = "https://github.com/versatiles-org/versatiles-rs/releases/tag/v${version}"; | ||
license = lib.licenses.mit; | ||
maintainers = with lib.maintainers; [ wilhelmines ]; | ||
mainProgram = "versatiles"; | ||
platforms = with lib.platforms; linux ++ darwin ++ windows; | ||
}; | ||
} |