{ pkgs ? import {} }: let ocamlStudentModule = pkgs.callPackage ./ocamlStudentModule.nix {}; in pkgs.stdenv.mkDerivation { name = "edujails"; src = ./.; installPhase = '' mkdir -p $out/bin cp ${ocamlStudentModule} $out/bin/ocamlStudentModule ''; }