Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions install/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,33 @@ It can be installed with
$ emerge sci-physics/root
```

### Guix

The Guix package for ROOT is in [guix-science](https://codeberg.org/guix-science/guix-science){:target="\_blank"} channel.

It can be installed into the user default profile using


```sh
$ guix install root
```

Building and installing older versions is possible with [package transformations](https://guix.gnu.org/manual/devel/en/html_node/Package-Transformation-Options.html)

```sh
guix install root --with-version=root="6.32.02"
```

Similarly, to obtain latest version or a precise source revision

```sh
guix install root --with-latest=root
guix install root --with-commit=root=COMMIT
```

If you encounter any issues, feel free to report them to the [guix-science issue tracker](https://codeberg.org/guix-science/guix-science/issues).


### <a name="nixos_nix_nixpkgs" />NixOS/Nix/Nixpkgs

The package name for ROOT in nixpkgs is `root`. It can be installed into the user environment using
Expand Down
Loading