blob: da05d243d82aa2d900a7ec5d980312cfc9c0b0d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Obtaining the Source
The most recent sources of Nix can be obtained from its [Git
repository](https://github.com/NixOS/nix). For example, the following
command will check out the latest revision into a directory called
`nix`:
```console
$ git clone https://github.com/NixOS/nix
```
Likewise, specific releases can be obtained from the
[tags](https://github.com/NixOS/nix/tags) of the repository.
|