Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-05-16 | Improve progress indicator | Eelco Dolstra | |
2017-03-02 | builtins.fetchgit: Support paths | Eelco Dolstra | |
2017-03-02 | builtins.fetchgit: Fix bad format string | Eelco Dolstra | |
2016-11-26 | Revert "Get rid of unicode quotes (#1140)" | Eelco Dolstra | |
This reverts commit f78126bfd6b6c8477fcdbc09b2f98772dbe9a1e7. There really is no need for such a massive change... | |||
2016-11-25 | Get rid of unicode quotes (#1140) | Guillaume Maudoux | |
2016-04-29 | Support Git repos in the Nix path | Eelco Dolstra | |
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. | |||
2016-04-29 | Add fetchgit builtin | Eelco Dolstra | |
The function builtins.fetchgit fetches Git repositories at evaluation time, similar to builtins.fetchTarball. (Perhaps the name should be changed, being confusing with respect to Nixpkgs's fetchgit function, with works at build time.) Example: (import (builtins.fetchgit git://github.com/NixOS/nixpkgs) {}).hello or (import (builtins.fetchgit { url = git://github.com/NixOS/nixpkgs-channels; rev = "nixos-16.03"; }) {}).hello Note that the result does not contain a .git directory. |