Files
OpenROAD/flake.nix
Vitor Bandeira 4e494dfd64 build: drop ninja as an option
Signed-off-by: Vitor Bandeira <vvbandeira@precisioninno.com>
2026-03-25 18:38:04 -03:00

61 lines
1.8 KiB
Nix

# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2024-2025, The OpenROAD Authors
# 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 $cmakeFlags ..
# 5. make
# 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-25.11";
};
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;
};
openroad-release = all.openroad.overrideAttrs (
fa: pa: {
pname = "openroad-release";
version = "24Q3";
src = pkgs.fetchFromGitHub {
owner = "The-OpenROAD-Project";
repo = "OpenROAD";
rev = fa.version;
fetchSubmodules = true;
sha256 = "sha256-Ye9XJcoUxtg031eazT4qrexvyN0jZHd8/kmvAr/lPzk=";
};
}
);
default = all.openroad;
};
in
all
);
};
}