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