33 lines
668 B
Ruby
Executable file
33 lines
668 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
#
|
|
#
|
|
require "json"
|
|
|
|
redirects = {
|
|
"collectd.org" => "github.com/collectd/go-collectd",
|
|
"golang.org/x/crypto" => "github.com/golang/crypto",
|
|
"golang.org/x/tools" => "github.com/golang/tools",
|
|
"gopkg.in/fatih/pool.v2" => "github.com/fatih/pool",
|
|
}
|
|
|
|
deps = File.read("Godeps").lines.map do |line|
|
|
(name, rev) = line.split(" ")
|
|
|
|
host = redirects.fetch(name, name)
|
|
|
|
url = "https://#{host}.git"
|
|
|
|
xxx = JSON.load(`nix-prefetch-git #{url} #{rev}`)
|
|
|
|
{
|
|
goPackagePath: name,
|
|
fetch: {
|
|
type: "git",
|
|
url: url,
|
|
rev: rev,
|
|
sha256: xxx['sha256'],
|
|
}
|
|
}
|
|
end
|
|
|
|
File.write("deps.json", JSON.pretty_generate(deps))
|