exercism.org/rust/shell.nix

15 lines
188 B
Nix
Raw Normal View History

{
pkgs ? import <nixpkgs> { }
}:
pkgs.mkShellNoCC {
name = "exercism";
buildInputs = [
pkgs.gcc
pkgs.rustc
pkgs.cargo
(pkgs.callPackage ../exercism.nix { })
];
}