Categorygithub.com/frantjc/go-reproducible-builds
repositorypackage
0.0.0-20241021140423-9651d3e86a85
Repository: https://github.com/frantjc/go-reproducible-builds.git
Documentation: pkg.go.dev

# README

go-reproducible-builds CI godoc goreportcard license

Go module to expose reproducible-builds.org's SOURCE_DATE_EPOCH environment variable.

install

go get github.com/frantjc/go-reproducible-builds

use

import (
    "fmt"

    reproduciblebuilds "github.com/frantjc/go-reproducible-builds"
)

func main() {
    fmt.Println(reproduciblebuilds.SourceDateEpoch)
}