Unverified Commit f971f35f authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #246426 from dit7ya/sqld

sqld: init at 0.17.2
parents cb3da14d 4650390d
Loading
Loading
Loading
Loading
+5268 −0

File added.

Preview size limit exceeded, changes collapsed.

+57 −0
Original line number Diff line number Diff line
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, protobuf
, openssl
, sqlite
, zstd
, stdenv
, darwin
}:

rustPlatform.buildRustPackage rec {
  pname = "sqld";
  version = "0.17.2";

  src = fetchFromGitHub {
    owner = "libsql";
    repo = "sqld";
    rev = "v${version}";
    hash = "sha256-KoEscrzkFJnxxJKL/2r4cY0oLpKdQMjFR3daryzrVKQ=";
  };

  cargoLock = {
    lockFile = ./Cargo.lock;
    outputHashes = {
      "libsqlite3-sys-0.26.0" = "sha256-JzSGpqYtkIq0mVYD0kERIB6rmZUttqkCGne+M4vqTJU=";
      "octopod-0.1.0" = "sha256-V16fOlIp9BCpyzgh1Aei3Mra/y15v8dQFA8tHdOwZm4=";
    };
  };

  nativeBuildInputs = [
    pkg-config
    protobuf
    rustPlatform.bindgenHook
  ];

  buildInputs = [
    openssl
    sqlite
    zstd
  ] ++ lib.optionals stdenv.isDarwin [
    darwin.apple_sdk.frameworks.Security
  ];

  env.ZSTD_SYS_USE_PKG_CONFIG = true;

  # requires a complex setup with podman for the end-to-end tests
  doCheck = false;

  meta = {
    description = "LibSQL with extended capabilities like HTTP protocol, replication, and more";
    homepage = "https://github.com/libsql/sqld";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ dit7ya ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -24963,6 +24963,8 @@ with pkgs;
  sv-lang = callPackage ../applications/science/electronics/sv-lang { };
  sqld = callPackage ../servers/sql/sqld { };
  sqlite = lowPrio (callPackage ../development/libraries/sqlite { });
  unqlite = lowPrio (callPackage ../development/libraries/unqlite { });