exercism.org/c/shell.nix

12 lines
163 B
Nix
Raw Normal View History

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