Skip to content

Instantly share code, notes, and snippets.

@brandoncc
Last active November 27, 2024 02:17
Show Gist options
  • Save brandoncc/2118b442ced586f5ab0a9d9b1dfa173f to your computer and use it in GitHub Desktop.
Save brandoncc/2118b442ced586f5ab0a9d9b1dfa173f to your computer and use it in GitHub Desktop.
mysql2 ruby gem nix devenv config

Option 1

Make sure these are in devenv.nix

  packages = with pkgs; [
    libmysqlclient
  ];

  services.mysql = {
    enable = true;
  };
  
  env.NIX_CFLAGS_COMPILE = "-I ${pkgs.mariadb-connector-c}/include/mariadb";

Option 2

Make sure these are in devenv.yaml

inputs:
  nixpkgs-unstable:
    url: github:nixos/nixpkgs/nixpkgs-unstable

Make sure these are in devenv.nix

  packages = with pkgs; [
    zstd
  ];

  services.mysql = {
    enable = true;
    package = pkgs-unstable.percona-server;
  };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment