blob: d7e86eabd150bbf848b04ccf22eb5133c5304589 [file] [log] [blame]
Glenn Hartmann15ea0e72025-04-04 14:27:351# Copyright 2025 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5{
6 inputs = { };
7 outputs =
8 { self }:
9 let
10 devShell = system: {
11 "${system}".default = import ./make-shell-for-system.nix {
12 inherit system;
13 } { };
14 };
15 in
16 {
17 devShells = devShell "aarch64-linux" // devShell "x86_64-linux";
18 };
19}