config/packages/zen-browser/default.nix
2024-08-21 14:35:32 -04:00

23 lines
423 B
Nix

let
pkgs = import <nixpkgs> {};
# I don't know if it needs gcc
in
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
# TODO: Install from cargo? Or use this instead?
rust-cbindgen
# TODO: Install from cargo? Or use this instead?
rust-bindgen
alsa-lib
cargo
clang
gcc
libpulseaudio
libclang
llvm
pkg-config
python3
rustc
];
}