24 lines
621 B
Markdown
24 lines
621 B
Markdown
# nix-quartus
|
|
Nix Expressions for Altera(Intel) Quartus.
|
|
|
|
These expressions are based on the expressions for Quartus found in Bjørn
|
|
Forsman's [nixos-config repository](https://github.com/bjornfor/nixos-config)
|
|
|
|
These packages use a (hopefully) recent pinned Nixpkgs rev, as specified in
|
|
`pinned-nixpkgs.nix`. They've been tested on x86_64 Linux.
|
|
|
|
## Building
|
|
|
|
Simply import the top-level expression for the desired Quartus version. For
|
|
example, to build the Lite Edition of Quartus Prime 18:
|
|
|
|
```
|
|
$ nix-build -E "(import ./lite18.nix)"
|
|
```
|
|
|
|
To install the same version:
|
|
|
|
```
|
|
$ nix-env -i -E "_: import ./lite18.nix"
|
|
```
|