From cb3490463746b69188f993026c1a3ca1efb04d84 Mon Sep 17 00:00:00 2001 From: VZstless Date: Wed, 18 Mar 2026 08:53:23 +0800 Subject: [PATCH 1/2] maintainers: add VZstless --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index cc686617e69b..2c8da5cd25e2 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -28724,6 +28724,12 @@ githubId = 988849; name = "Vasiliy Yorkin"; }; + VZstless = { + name = "VZstless"; + email = "i@vzstless.moe"; + github = "atlarator"; + githubId = 233668878; + }; w-lfchen = { email = "w-lfchen@posteo.net"; github = "w-lfchen"; From ffece1b268b97b5038276728540bf788db466102 Mon Sep 17 00:00:00 2001 From: VZstless Date: Wed, 18 Mar 2026 08:54:49 +0800 Subject: [PATCH 2/2] stoolap: init at 0.3.7 --- pkgs/by-name/st/stoolap/package.nix | 33 +++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pkgs/by-name/st/stoolap/package.nix diff --git a/pkgs/by-name/st/stoolap/package.nix b/pkgs/by-name/st/stoolap/package.nix new file mode 100644 index 000000000000..06ebd037c37b --- /dev/null +++ b/pkgs/by-name/st/stoolap/package.nix @@ -0,0 +1,33 @@ +{ + lib, + rustPlatform, + fetchFromGitHub, + stdenv, +}: + +rustPlatform.buildRustPackage (finalAttrs: { + pname = "stoolap"; + version = "0.3.7"; + + src = fetchFromGitHub { + owner = "stoolap"; + repo = "stoolap"; + tag = "v${finalAttrs.version}"; + hash = "sha256-NfGs9TDyX+8hC2bCGJL0AWFd3C1joowT061vea5hxx0="; + }; + + cargoHash = "sha256-tzgxffwXd331Sz1xftXNBowqud29pKvbw+Epv01xOiQ="; + + # On aarch64-darwin, dev target needs to set panic strategy to abort + # However this must be set while the flag `-Zpanic_abort_tests` is also set, + # which could only be done in Rust nightly toolchain. + doCheck = !(with stdenv.hostPlatform; isDarwin && isAarch64); + + meta = { + description = "Modern Embedded SQL Database written in Rust"; + homepage = "https://stoolap.io/"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ VZstless ]; + mainProgram = "stoolap"; + }; +})