about summary refs log tree commit diff
path: root/src/libexpr/primops/fetchgit.hh
blob: 6ffb21a96daa4840b370ef6dd3d0923e48e9a103 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <string>

#include "ref.hh"

namespace nix {

class Store;

Path exportGit(ref<Store> store,
    const std::string & uri, const std::string & rev);

}