Glenn Hartmann | 15ea0e7 | 2025-04-04 14:27:35 | [diff] [blame] | 1 | # 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 | } |