1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 09:04:12 +02:00

redis tls env

This commit is contained in:
Robin Appelman 2025-05-02 12:30:57 +02:00
commit 7419a32685
14 changed files with 313 additions and 8 deletions

View file

@ -1,13 +1,11 @@
{
stdenv,
rustPlatform,
libsodium,
pkg-config,
lib,
}: let
inherit (lib.sources) sourceByRegex;
inherit (builtins) fromTOML readFile;
src = sourceByRegex ../. ["Cargo.*" "(src)(/.*)?"];
src = sourceByRegex ../. ["Cargo.*" "(src|redis-certificates)(/.*)?"];
version = (fromTOML (readFile ../Cargo.toml)).package.version;
in
rustPlatform.buildRustPackage rec {