mpv-rpc/shell.nix

13 lines
209 B
Nix
Raw Normal View History

2024-05-24 14:41:03 +02:00
{ mkShell, fenix }:
let
toolchain = fenix.fromToolchainFile {
file = ./rust-toolchain.toml;
sha256 = "opUgs6ckUQCyDxcB9Wy51pqhd0MPGHUVbwRKKPGiwZU=";
};
in
mkShell {
packages = [ toolchain ];
}