Documentation

Lake.Config.Package

First tries to convert a string into a legal name. If that fails, defaults to making it a simple name (e.g., Lean.Name.mkSimple). Currently used for package and target names taken from the CLI.

Equations
Instances For
    @[inline]

    The default buildArchive configuration for a package with name.

    Equations
    Instances For

      PackageConfig #

      A Package's declarative configuration.

      • packagesDir : Lake.FilePath
      • buildType : Lake.BuildType
      • leanOptions : Array Lake.LeanOption
      • moreLeanArgs : Array String
      • weakLeanArgs : Array String
      • moreLeancArgs : Array String
      • moreServerOptions : Array Lake.LeanOption
      • weakLeancArgs : Array String
      • moreLinkArgs : Array String
      • weakLinkArgs : Array String
      • backend : Lake.Backend
      • platformIndependent : Option Bool
      • name : Lake.Name

        The Name of the package.

      • manifestFile : Option Lake.FilePath

        This field is deprecated.

        The path of a package's manifest file, which stores the exact versions of its resolved dependencies.

        Defaults to defaultManifestFile (i.e., lake-manifest.json).

      • extraDepTargets : Array Lake.Name

        An Array of target names to build whenever the package is used.

      • precompileModules : Bool

        Whether to compile each of the package's module into a native shared library that is loaded whenever the module is imported. This speeds up evaluation of metaprograms and enables the interpreter to run functions marked @[extern].

        Defaults to false.

      • moreServerArgs : Array String

        Deprecated in favor of moreGlobalServerArgs. Additional arguments to pass to the Lean language server (i.e., lean --server) launched by lake serve, both for this package and also for any packages browsed from this one in the same session.

      • moreGlobalServerArgs : Array String

        Additional arguments to pass to the Lean language server (i.e., lean --server) launched by lake serve, both for this package and also for any packages browsed from this one in the same session.

      • srcDir : Lake.FilePath

        The directory containing the package's Lean source files. Defaults to the package's directory.

        (This will be passed to lean as the -R option.)

      • buildDir : Lake.FilePath

        The directory to which Lake should output the package's build results. Defaults to defaultBuildDir (i.e., .lake/build).

      • leanLibDir : Lake.FilePath

        The build subdirectory to which Lake should output the package's binary Lean libraries (e.g., .olean, .ilean files). Defaults to defaultLeanLibDir (i.e., lib).

      • nativeLibDir : Lake.FilePath

        The build subdirectory to which Lake should output the package's native libraries (e.g., .a, .so, .dll files). Defaults to defaultNativeLibDir (i.e., lib).

      • binDir : Lake.FilePath

        The build subdirectory to which Lake should output the package's binary executable. Defaults to defaultBinDir (i.e., bin).

      • The build subdirectory to which Lake should output the package's intermediary results (e.g., .c and .o files). Defaults to defaultIrDir (i.e., ir).

      • releaseRepo? : Option String

        The URL of the GitHub repository to upload and download releases of this package. If none (the default), for downloads, Lake uses the URL the package was download from (if it is a dependency) and for uploads, uses gh's default.

      • releaseRepo : Option String

        The URL of the GitHub repository to upload and download releases of this package. If none (the default), for downloads, Lake uses the URL the package was download from (if it is a dependency) and for uploads, uses gh's default.

      • buildArchive? : Option String

        A custom name for the build archive for the GitHub cloud release. If none (the default), Lake uses buildArchive, which defaults to {(pkg-)name}-{System.Platform.target}.tar.gz.

      • buildArchive : String

        A custom name for the build archive for the GitHub cloud release. Defaults to {(pkg-)name}-{System.Platform.target}.tar.gz.

      • preferReleaseBuild : Bool

        Whether to prefer downloading a prebuilt release (from GitHub) rather than building this package from the source when this package is used as a dependency.

      Instances For
        Equations
        • One or more equations did not get rendered due to their size.

        Package #

        structure Lake.Package :

        A Lake package -- its location plus its configuration.

        Instances For
          Equations
          @[implemented_by Lake.OpaquePackage.unsafeMk]
          @[implemented_by Lake.OpaquePackage.unsafeGet]
          Equations
          Equations
          @[reducible, inline]
          Equations
          Instances For
            @[inline]
            Equations
            Instances For
              @[reducible, inline]
              Equations
              Instances For
                @[inline]
                Equations
                Instances For
                  @[reducible, inline]

                  The package's name.

                  Equations
                  • self.name = self.config.name
                  Instances For
                    structure Lake.NPackage (name : Lake.Name) extends Lake.Package :

                    A package with a name known at type-level.

                    Instances For
                      @[simp]
                      theorem Lake.NPackage.name_eq {name : Lake.Name} (self : Lake.NPackage name) :
                      self.name = name
                      Equations
                      • Lake.instCoeOutNPackagePackage = { coe := Lake.NPackage.toPackage }
                      Equations
                      • Lake.instCoeDepPackageNPackageName = { coe := { toPackage := pkg, name_eq := } }
                      @[reducible, inline]

                      The package's name.

                      Equations
                      • x.name = n
                      Instances For
                        @[reducible, inline]
                        abbrev Lake.PostUpdateFn (pkgName : Lake.Name) :

                        The type of a post-update hooks monad. IO equipped with logging ability and information about the Lake configuration.

                        Equations
                        Instances For
                          structure Lake.PostUpdateHook (pkgName : Lake.Name) :
                          Instances For
                            Equations
                            • Lake.instInhabitedPostUpdateHook = { default := { fn := default } }
                            Equations
                            • Lake.OpaquePostUpdateHook.instCoePostUpdateHook = { coe := Lake.OpaquePostUpdateHook.mk }
                            Equations
                            @[implemented_by Lake.OpaquePostUpdateHook.unsafeGet]
                            Equations
                            • Lake.OpaquePostUpdateHook.unsafeGet = unsafeCast
                            Instances For
                              Equations
                              • Lake.OpaquePostUpdateHook.unsafeMk = unsafeCast
                              Instances For
                                @[implemented_by Lake.OpaquePostUpdateHook.unsafeMk]
                                Equations
                                • Lake.OpaquePostUpdateHook.instCoePostUpdateHook_1 = { coe := Lake.OpaquePostUpdateHook.get }
                                Instances For
                                  @[inline]

                                  The package's direct dependencies.

                                  Equations
                                  Instances For
                                    @[inline]

                                    The path to the package's Lake directory relative to dir (e.g., .lake).

                                    Equations
                                    Instances For
                                      @[inline]

                                      The full path to the package's Lake directory (i.e, dir joined with relLakeDir).

                                      Equations
                                      • self.lakeDir = self.dir / self.relLakeDir
                                      Instances For
                                        @[inline]

                                        The path for storing the package's remote dependencies relative to dir (i.e., packagesDir).

                                        Equations
                                        • self.relPkgsDir = self.config.packagesDir
                                        Instances For
                                          @[inline]

                                          The package's dir joined with its relPkgsDir.

                                          Equations
                                          • self.pkgsDir = self.dir / self.relPkgsDir
                                          Instances For
                                            @[inline]

                                            The full path to the package's configuration file.

                                            Equations
                                            • self.configFile = self.dir / self.relConfigFile
                                            Instances For
                                              @[inline]

                                              The path to the package's JSON manifest of remote dependencies.

                                              Equations
                                              • self.manifestFile = self.dir / self.relManifestFile
                                              Instances For
                                                @[inline]

                                                The package's dir joined with its buildDir configuration.

                                                Equations
                                                • self.buildDir = self.dir / self.config.buildDir
                                                Instances For
                                                  @[inline]

                                                  The package's extraDepTargets configuration.

                                                  Equations
                                                  • self.extraDepTargets = self.config.extraDepTargets
                                                  Instances For
                                                    @[inline]

                                                    The package's platformIndependent configuration.

                                                    Equations
                                                    • self.platformIndependent = self.config.platformIndependent
                                                    Instances For
                                                      @[inline]

                                                      The package's releaseRepo/releaseRepo? configuration.

                                                      Equations
                                                      • self.releaseRepo? = HOrElse.hOrElse self.config.releaseRepo fun (x : Unit) => self.config.releaseRepo?
                                                      Instances For
                                                        @[inline]

                                                        The package's buildArchive/buildArchive? configuration.

                                                        Equations
                                                        • self.buildArchive = self.config.buildArchive
                                                        Instances For
                                                          @[inline]

                                                          The package's lakeDir joined with its buildArchive.

                                                          Equations
                                                          • self.buildArchiveFile = self.lakeDir / { toString := self.buildArchive }
                                                          Instances For
                                                            @[inline]

                                                            The package's preferReleaseBuild configuration.

                                                            Equations
                                                            • self.preferReleaseBuild = self.config.preferReleaseBuild
                                                            Instances For
                                                              @[inline]

                                                              The package's precompileModules configuration.

                                                              Equations
                                                              • self.precompileModules = self.config.precompileModules
                                                              Instances For
                                                                @[inline]

                                                                The package's moreGlobalServerArgs configuration.

                                                                Equations
                                                                • self.moreGlobalServerArgs = self.config.moreGlobalServerArgs
                                                                Instances For
                                                                  @[inline]

                                                                  The package's moreServerOptions configuration appended to its leanOptions configuration.

                                                                  Equations
                                                                  • self.moreServerOptions = self.config.leanOptions ++ self.config.moreServerOptions
                                                                  Instances For
                                                                    @[inline]

                                                                    The package's buildType configuration.

                                                                    Equations
                                                                    • self.buildType = self.config.buildType
                                                                    Instances For
                                                                      @[inline]

                                                                      The package's backend configuration.

                                                                      Equations
                                                                      • self.backend = self.config.backend
                                                                      Instances For
                                                                        @[inline]

                                                                        The package's leanOptions configuration.

                                                                        Equations
                                                                        • self.leanOptions = self.config.leanOptions
                                                                        Instances For
                                                                          @[inline]

                                                                          The package's moreLeanArgs configuration appended to its leanOptions configuration.

                                                                          Equations
                                                                          Instances For
                                                                            @[inline]

                                                                            The package's weakLeanArgs configuration.

                                                                            Equations
                                                                            • self.weakLeanArgs = self.config.weakLeanArgs
                                                                            Instances For
                                                                              @[inline]

                                                                              The package's moreLeancArgs configuration.

                                                                              Equations
                                                                              • self.moreLeancArgs = self.config.moreLeancArgs
                                                                              Instances For
                                                                                @[inline]

                                                                                The package's weakLeancArgs configuration.

                                                                                Equations
                                                                                • self.weakLeancArgs = self.config.weakLeancArgs
                                                                                Instances For
                                                                                  @[inline]

                                                                                  The package's moreLinkArgs configuration.

                                                                                  Equations
                                                                                  • self.moreLinkArgs = self.config.moreLinkArgs
                                                                                  Instances For
                                                                                    @[inline]

                                                                                    The package's weakLinkArgs configuration.

                                                                                    Equations
                                                                                    • self.weakLinkArgs = self.config.weakLinkArgs
                                                                                    Instances For
                                                                                      @[inline]

                                                                                      The package's dir joined with its srcDir configuration.

                                                                                      Equations
                                                                                      • self.srcDir = self.dir / self.config.srcDir
                                                                                      Instances For
                                                                                        @[inline]

                                                                                        The package's root directory for lean (i.e., srcDir).

                                                                                        Equations
                                                                                        • self.rootDir = self.srcDir
                                                                                        Instances For
                                                                                          @[inline]

                                                                                          The package's buildDir joined with its leanLibDir configuration.

                                                                                          Equations
                                                                                          • self.leanLibDir = self.buildDir / self.config.leanLibDir
                                                                                          Instances For
                                                                                            @[inline]

                                                                                            The package's buildDir joined with its nativeLibDir configuration.

                                                                                            Equations
                                                                                            • self.nativeLibDir = self.buildDir / self.config.nativeLibDir
                                                                                            Instances For
                                                                                              @[inline]

                                                                                              The package's buildDir joined with its binDir configuration.

                                                                                              Equations
                                                                                              • self.binDir = self.buildDir / self.config.binDir
                                                                                              Instances For
                                                                                                @[inline]

                                                                                                The package's buildDir joined with its irDir configuration.

                                                                                                Equations
                                                                                                • self.irDir = self.buildDir / self.config.irDir
                                                                                                Instances For

                                                                                                  Whether the given module is considered local to the package.

                                                                                                  Equations
                                                                                                  Instances For

                                                                                                    Whether the given module is in the package (i.e., can build it).

                                                                                                    Equations
                                                                                                    • One or more equations did not get rendered due to their size.
                                                                                                    Instances For

                                                                                                      Remove the package's build outputs (i.e., delete its build directory).

                                                                                                      Equations
                                                                                                      Instances For