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.
11 lines
196 B
Nix
11 lines
196 B
Nix
{
|
|
pkgs ? import <nixpkgs> { }
|
|
}:
|
|
|
|
pkgs.mkShellNoCC {
|
|
name = "exercism";
|
|
buildInputs = [
|
|
(pkgs.lua.withPackages(ps: with ps; [ busted]))
|
|
(pkgs.callPackage ../exercism.nix { })
|
|
];
|
|
}
|