mpv-rpc/shell.nix

13 lines
209 B
Nix
Raw Permalink Normal View History

2024-05-24 14:41:03 +02:00
{ mkShell, fenix }:
let
toolchain = fenix.fromToolchainFile {
file = ./rust-toolchain.toml;
2024-07-15 01:35:26 +02:00
sha256 = "Ngiz76YP4HTY75GGdH2P+APE/DEIx2R/Dn+BwwOyzZU=";
2024-05-24 14:41:03 +02:00
};
in
mkShell {
packages = [ toolchain ];
}