diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2022-12-24 18:30:09 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2022-12-24 18:30:09 +0200 |
commit | e837d9b8287d16a66a7e1466b3699bdb4c7bc8f7 (patch) | |
tree | e662e24464a3e306948562fe2b103b4755603c4c | |
parent | f1d9201169194090cf80abbbe1e4d4c68bfc073e (diff) |
cargo-c: Fix tarball checksum
It changed in the meantime because of retagging.
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1062>
-rw-r--r-- | recipes/build-tools/cargo-c.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/build-tools/cargo-c.recipe b/recipes/build-tools/cargo-c.recipe index 89736fc8..ebabb9bb 100644 --- a/recipes/build-tools/cargo-c.recipe +++ b/recipes/build-tools/cargo-c.recipe @@ -6,7 +6,7 @@ class Recipe(recipe.Recipe): stype = SourceType.TARBALL btype = BuildType.CARGO url = 'https://github.com/lu-zero/cargo-c/archive/refs/tags/v0.9.15.tar.gz' - tarball_checksum = '2205170f30fe49da05f42b1c151b04042547d60a4429815935a2b6e1069a27bb' + tarball_checksum = 'ba29e662c2419ce12e4d5a9d0b05c057378088f474bc9316238c0a621b488299' tarball_dirname = '%(name)s-%(version)s' # Need system openssl on Linux use_system_libs = True |