Files
nixos/shells.nix
T

25 lines
322 B
Nix
Raw Normal View History

2024-10-19 01:41:53 -05:00
{
pkgs,
2025-12-15 21:51:27 -06:00
colmena,
2024-10-19 01:41:53 -05:00
...
}:
2024-10-10 13:01:37 -05:00
let
2025-12-15 21:51:27 -06:00
inherit (pkgs.stdenv.hostPlatform) system;
2024-10-10 13:01:37 -05:00
in
2024-10-04 10:56:22 -05:00
{
default = pkgs.mkShell {
buildInputs = with pkgs; [
bashInteractive
2025-12-15 21:51:27 -06:00
colmena.defaultPackage.${system}
2025-12-08 05:53:17 -06:00
stdenv.cc
2024-10-04 10:56:22 -05:00
curl
git
gnutar
gzip
inject
inject-darwin
2025-12-18 09:50:43 -06:00
nano
2024-10-04 10:56:22 -05:00
];
};
}