An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

        

# go-reproducible-builds [![CI](https://github.com/frantjc/go-reproducible-builds/actions/workflows/ci.yml/badge.svg?branch=main&event=push)](https://github.com/frantjc/go-reproducible-builds/actions) [![godoc](https://pkg.go.dev/badge/github.com/frantjc/go-reproducible-builds.svg)](https://pkg.go.dev/github.com/frantjc/go-reproducible-builds) [![goreportcard](https://goreportcard.com/badge/github.com/frantjc/go-reproducible-builds)](https://goreportcard.com/report/github.com/frantjc/go-reproducible-builds) ![license](https://shields.io/github/license/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)
}
```