1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-21 23:40:24 -04:00
nix/src/libexpr/primops/fetchgit.hh

16 lines
239 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 & ref, const std::string & rev = "",
const std::string & name = "");
}