mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-22 07:24:48 +02:00

* create containers with nix * updated README.md * added SPDX license headers Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
16 lines
205 B
Nix
16 lines
205 B
Nix
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (c) 2024 Matter Labs
|
|
{ lib
|
|
, mkShell
|
|
, teepot
|
|
, dive
|
|
, taplo
|
|
, ...
|
|
}:
|
|
mkShell {
|
|
inputsFrom = [ teepot.teepot ];
|
|
packages = [
|
|
dive
|
|
taplo
|
|
];
|
|
}
|