Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add preliminary support for private dependencies using builtins.fetchGit #42

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on May 29, 2022

  1. Configuration menu
    Copy the full SHA
    b44c8c2 View commit details
    Browse the repository at this point in the history
  2. Add preliminary support for private dependencies using builtins.fetchGit

    Using this API looks like:
    ``` nix
    buildGoApplication {
      srcOverrides = self: super: {
        "github.com/BurntSushi/toml" = super."github.com/BurntSushi/toml".override { private = true; };
      };
    }
    ```
    
    Outstanding issues:
    - Nix has issues dealing with short revs ( NixOS/nix#4694 )
    - Param passing heuristics to fetchGit needs to be nailed down.
    adisbladis committed May 29, 2022
    Configuration menu
    Copy the full SHA
    212f269 View commit details
    Browse the repository at this point in the history