forked from The-OpenROAD-Project/OpenROAD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
38 lines (35 loc) · 1007 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# To use Nix just to get an environment with dependencies:
# 1. Install Nix: https://github.com/DeterminateSystems/nix-installer
# 2. Invoke `nix develop` in your shell. First invocation will
# take around 5 minutes depending on your internet connection and
# CPU speed.
# 3. cd build
# 4. cmake -G Ninja $cmakeFlags ..
# 5. ninja
# To build OpenROAD with Nix:
# 1. Install Nix: https://github.com/DeterminateSystems/nix-installer
# 2. nix build '.?submodules=1#'
{
inputs = {
nixpkgs.url = github:nixos/nixpkgs/nixos-24.05;
};
outputs = {self, nixpkgs, ...}: {
packages = nixpkgs.lib.genAttrs [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
] (
system: let
pkgs = import nixpkgs {inherit system;};
all = {
openroad = (nixpkgs.lib.callPackageWith pkgs) ./default.nix {
flake = self;
};
default = all.openroad;
};
in
all
);
};
}