https://github.com/frantjc/go-reproducible-builds
Go module to expose reproducible-builds.org's SOURCE_DATE_EPOCH.
https://github.com/frantjc/go-reproducible-builds
Last synced: 2 months ago
JSON representation
Go module to expose reproducible-builds.org's SOURCE_DATE_EPOCH.
- Host: GitHub
- URL: https://github.com/frantjc/go-reproducible-builds
- Owner: frantjc
- License: mit
- Created: 2024-10-20T01:58:07.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-02-17T16:09:23.000Z (3 months ago)
- Last Synced: 2025-02-17T17:26:20.346Z (3 months ago)
- Language: Go
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-reproducible-builds [](https://github.com/frantjc/go-reproducible-builds/actions) [](https://pkg.go.dev/github.com/frantjc/go-reproducible-builds) [](https://goreportcard.com/report/github.com/frantjc/go-reproducible-builds) 
[Go](https://go.dev) module to expose [reproducible-builds.org](https://reproducible-builds.org/)'s `SOURCE_DATE_EPOCH` environment variable.
## install
```sh
go get github.com/frantjc/go-reproducible-builds
```## use
```go
import (
"fmt"reproduciblebuilds "github.com/frantjc/go-reproducible-builds"
)func main() {
fmt.Println(reproduciblebuilds.SourceDateEpoch)
}
```