lix/src/libexpr/primops/fetchgit.hh

15 lines
174 B
C++
Raw Normal View History

#pragma once
#include <string>
#include "ref.hh"
namespace nix {
class Store;
Path exportGit(ref<Store> store,
const std::string & uri, const std::string & rev);
}