1 Star 0 Fork 0

devdz/colima

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
flake.nix 580 Bytes
一键复制 编辑 原始数据 按行查看 历史
Krzysztof Bezrąk 提交于 2023-03-16 14:45 . nix: update flake (#651)
{
description = "Container runtimes on macOS (and Linux) with minimal setup";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
packages.default = import ./colima.nix { inherit pkgs; };
devShell = import ./shell.nix { inherit pkgs; };
apps.default = {
type = "app";
program = "${self.packages.${system}.default}/bin/colima";
};
}
);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/devdz/colima.git
git@gitee.com:devdz/colima.git
devdz
colima
colima
main

搜索帮助