Daniel Siepmann
184bf48147
This allows to only download and build environment for the actual language one is playing with. Also do not use downloaded binary but provide a derivation for exercism binary.
14 lines
188 B
Nix
14 lines
188 B
Nix
{
|
|
pkgs ? import <nixpkgs> { }
|
|
}:
|
|
|
|
pkgs.mkShellNoCC {
|
|
name = "exercism";
|
|
buildInputs = [
|
|
pkgs.gcc
|
|
pkgs.rustc
|
|
pkgs.cargo
|
|
|
|
(pkgs.callPackage ../exercism.nix { })
|
|
];
|
|
}
|