26 lines
334 B
Nix
26 lines
334 B
Nix
{
|
|
pkgs,
|
|
colmena,
|
|
...
|
|
}:
|
|
let
|
|
inherit (pkgs.stdenv.hostPlatform) system;
|
|
in
|
|
{
|
|
default = pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
bashInteractive
|
|
colmena.defaultPackage.${system}
|
|
stdenv.cc
|
|
curl
|
|
git
|
|
gnutar
|
|
gzip
|
|
inject
|
|
inject-darwin
|
|
vim
|
|
zellij
|
|
];
|
|
};
|
|
}
|