surrealdb: 2.3.5 -> 2.3.7 (#425199)

authored by Yt and committed by GitHub d8572567 1b1bbc52

+10 -11
+10 -11
pkgs/by-name/su/surrealdb/package.nix
··· 6 6 openssl, 7 7 rocksdb, 8 8 testers, 9 - surrealdb, 10 9 protobuf, 11 10 }: 12 - rustPlatform.buildRustPackage rec { 11 + rustPlatform.buildRustPackage (finalAttrs: { 13 12 pname = "surrealdb"; 14 - version = "2.3.5"; 13 + version = "2.3.7"; 15 14 16 15 src = fetchFromGitHub { 17 16 owner = "surrealdb"; 18 17 repo = "surrealdb"; 19 - tag = "v${version}"; 20 - hash = "sha256-7Rv57D966TQFHbZKmtnt1XWuNOwD+r175iUVJiVho/0="; 18 + tag = "v${finalAttrs.version}"; 19 + hash = "sha256-gZICuvgMOdwa39i+5ETUDuFfBtSiZuuFOYW5pHPkoms="; 21 20 }; 22 21 23 22 useFetchCargoVendor = true; 24 - cargoHash = "sha256-JENp5g1as1RS9fdV5qepEAhE9/SJ8lbMiwyk3YDeu5k="; 23 + cargoHash = "sha256-KndVaz7o0kMtMvQf4NK0pNMaC518keWddmGkYtemeWg="; 25 24 26 25 # error: linker `aarch64-linux-gnu-gcc` not found 27 26 postPatch = '' ··· 55 54 __darwinAllowLocalNetworking = true; 56 55 57 56 passthru.tests.version = testers.testVersion { 58 - package = surrealdb; 57 + package = finalAttrs.finalPackage; 59 58 command = "surreal version"; 60 59 }; 61 60 62 - meta = with lib; { 61 + meta = { 63 62 description = "Scalable, distributed, collaborative, document-graph database, for the realtime web"; 64 63 homepage = "https://surrealdb.com/"; 65 64 mainProgram = "surreal"; 66 - license = licenses.bsl11; 67 - maintainers = with maintainers; [ 65 + license = lib.licenses.bsl11; 66 + maintainers = with lib.maintainers; [ 68 67 sikmir 69 68 happysalada 70 69 siriobalmelli 71 70 ]; 72 71 }; 73 - } 72 + })