Want to contribute? Fork me on Codeberg.org!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
499 B

1 year ago
# <shell.nix>
{ pkgs ? import <nixpkgs> {}}:
1 year ago
let
rust_overlay = import (builtins.fetchTarball "https://github.com/oxalica/rust-overlay/archive/master.tar.gz");
pkgs = import <nixpkgs> { overlays = [ rust_overlay ]; };
rustnightly = (pkgs.rust-bin.nightly.latest.default.override {
1 year ago
extensions = [
"rust-src"
];
});
in
pkgs.mkShell {
buildInputs = with pkgs; [
rustnightly
1 year ago
rust-analyzer
bacon
pkg-config
openssl
gettext
sqlite
dart-sass
];
}