-
-
Notifications
You must be signed in to change notification settings - Fork 14.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gdal: 3.4.2 -> 3.5.2 #179406
Merged
Merged
gdal: 3.4.2 -> 3.5.2 #179406
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
fc3e4af
libgeotiff: 1.5.1 -> 1.7.1
dotlambda c8e545b
brunsli: init at 0.1
dotlambda b3f94fd
lerc: init at 3.0
dotlambda dcd559e
gdal: 3.4.2 -> 3.5.2
dotlambda d0f3893
gplates: use python39
dotlambda 7c224b3
python310Packages.fiona: fix tests with GDAL 3.5.1
dotlambda d35077a
mapnik: 3.1.0 -> unstable-2022-04-14
erictapen 189a229
python3Packages.python-mapnik: unstable-2020-02-24 -> unstable-2020-0…
erictapen 5d916d4
gdal: skip test failing when using PROJ < 8
dotlambda 3d99938
kea: fix build on darwin
risicle 33ea139
brunsli: tidy patching
risicle 434f16a
brunsli: fix building on darwin
risicle 7bcfaeb
gdal: fix build on darwin
risicle 9a91d12
mapnik: unstable-2022-04-14 -> unstable-2022-10-18
dotlambda 12455a5
proj: 9.0.0 -> 9.1.0
dotlambda ac986f0
python310Packages.pyproj: 3.3.1 -> 3.4.0
dotlambda 82f891e
python310Packages.basemap: 1.3.4 -> 1.3.6
dotlambda 3885b6d
proj: don't add cURL dependency to CMake config
dotlambda 80703c4
gdal: don't depend on kea
dotlambda File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ lib | ||
, stdenv | ||
, fetchFromGitHub | ||
, fetchpatch | ||
, cmake | ||
, brotli | ||
}: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "brunsli"; | ||
version = "0.1"; | ||
|
||
outputs = [ "out" "dev" ]; | ||
|
||
src = fetchFromGitHub { | ||
owner = "google"; | ||
repo = "brunsli"; | ||
rev = "v${version}"; | ||
hash = "sha256-ZcrRz2xSoRepgG8KZYY/JzgONerItW0e6mH1PYsko98="; | ||
}; | ||
|
||
patches = [ | ||
# unvendor brotli | ||
(fetchpatch { | ||
url = "https://cgit.freebsd.org/ports/plain/graphics/brunsli/files/patch-CMakeLists.txt"; | ||
extraPrefix = ""; | ||
hash = "sha256-/WPOG9OcEDj9ObBSXEM8Luq4Rix+PS2MvsYyHhK5mns="; | ||
}) | ||
(fetchpatch { | ||
url = "https://cgit.freebsd.org/ports/plain/graphics/brunsli/files/patch-brunsli.cmake"; | ||
extraPrefix = ""; | ||
hash = "sha256-+HXA9Tin+l2St7rRUEBM0AfhAjSoFxz8UX7hsg12aFg="; | ||
}) | ||
]; | ||
|
||
postPatch = '' | ||
rm -r third_party | ||
'' + lib.optionalString stdenv.isDarwin '' | ||
rm -r build | ||
''; | ||
|
||
nativeBuildInputs = [ | ||
cmake | ||
]; | ||
|
||
buildInputs = [ | ||
brotli | ||
]; | ||
|
||
meta = { | ||
description = "Lossless JPEG repacking library"; | ||
homepage = "https://github.com/google/brunsli"; | ||
license = lib.licenses.mit; | ||
maintainers = with lib.maintainers; [ dotlambda ]; | ||
}; | ||
} |
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
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,30 @@ | ||
{ lib | ||
, stdenv | ||
, fetchFromGitHub | ||
, cmake | ||
}: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "lerc"; | ||
version = "3.0"; | ||
|
||
outputs = [ "out" "dev" ]; | ||
|
||
src = fetchFromGitHub { | ||
owner = "esri"; | ||
repo = "lerc"; | ||
rev = "v${version}"; | ||
hash = "sha256-QO5+ouQy5nOcAgvxMeBDoSBP+G3ClDjXipnkuSIDcP0="; | ||
}; | ||
|
||
nativeBuildInputs = [ | ||
cmake | ||
]; | ||
|
||
meta = { | ||
description = "C++ library for Limited Error Raster Compression"; | ||
homepage = "https://github.com/esri/lerc"; | ||
license = lib.licenses.asl20; | ||
maintainers = with lib.maintainers; [ dotlambda ]; | ||
}; | ||
} |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any particular reason to disable internal libs? To avoid vendoring? Could this be the reason LERC compression is currently unavailable?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This. It's hard enough to stay on top of all the libs that need security updates in nixpkgs without libraries hiding their own versions all over the place (which they frequently neglect for years)