aboutsummaryrefslogtreecommitdiff
path: root/overlays/ml/default.nix
blob: 7d2940a70a32019fbdf065eee21cfe5c49eb5491 (plain)
1
2
3
4
5
6
7
8
9
10
self: super:
{
  ml-environment = super.buildEnv {
    name = "ml-environment";
    ignoreCollisions = true;
    paths = [
      self.ocaml
    ];
  };
}