2018-11-29 18:18:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "store-api.hh"
|
|
|
|
|
|
|
|
#include <regex>
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
struct GitInfo
|
|
|
|
{
|
|
|
|
Path storePath;
|
2019-10-15 22:12:40 +00:00
|
|
|
std::optional<std::string> ref;
|
2019-04-19 09:34:23 +00:00
|
|
|
Hash rev{htSHA1};
|
2019-10-15 22:12:40 +00:00
|
|
|
std::optional<uint64_t> revCount;
|
2019-05-28 18:34:02 +00:00
|
|
|
time_t lastModified;
|
2018-11-29 18:18:36 +00:00
|
|
|
};
|
|
|
|
|
2019-10-15 22:12:40 +00:00
|
|
|
GitInfo exportGit(
|
|
|
|
ref<Store> store,
|
|
|
|
std::string uri,
|
2019-04-19 09:34:23 +00:00
|
|
|
std::optional<std::string> ref,
|
|
|
|
std::optional<Hash> rev,
|
2018-11-29 18:18:36 +00:00
|
|
|
const std::string & name);
|
|
|
|
|
2019-10-15 22:12:40 +00:00
|
|
|
GitInfo exportGitHub(
|
|
|
|
ref<Store> store,
|
|
|
|
const std::string & owner,
|
|
|
|
const std::string & repo,
|
|
|
|
std::optional<std::string> ref,
|
|
|
|
std::optional<Hash> rev);
|
|
|
|
|
2018-11-29 18:18:36 +00:00
|
|
|
}
|