Support Git repos in the Nix path

E.g.

  $ nix-build -I nixpkgs=git://github.com/NixOS/nixpkgs '<nixpkgs>' -A hello

This is not extremely useful yet because you can't specify a
branch/revision.
This commit is contained in:
Eelco Dolstra 2016-04-29 21:04:40 +02:00
parent 38539b943a
commit d8bf0d4859
5 changed files with 71 additions and 37 deletions

View file

@ -0,0 +1,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);
}