mpv-rpc/shell.nix

12 lines
209 B
Nix

{ mkShell, fenix }:
let
toolchain = fenix.fromToolchainFile {
file = ./rust-toolchain.toml;
sha256 = "opUgs6ckUQCyDxcB9Wy51pqhd0MPGHUVbwRKKPGiwZU=";
};
in
mkShell {
packages = [ toolchain ];
}