19 lines
370 B
Nix
19 lines
370 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
cargo
|
|
rustc
|
|
rustfmt
|
|
clippy
|
|
pkg-config
|
|
alsa-lib
|
|
# The ProjectEQ dump is a MariaDB SQL dump. This provides mariadbd,
|
|
# mariadb-install-db, and the mariadb/mysql client aliases.
|
|
mariadb
|
|
unzip
|
|
];
|
|
|
|
PKG_CONFIG_PATH = "${pkgs.alsa-lib.dev}/lib/pkgconfig";
|
|
}
|