Initial commit

This commit is contained in:
puck 2024-10-03 23:57:22 +00:00
commit 55a1efa08f
60 changed files with 5485 additions and 0 deletions

33
shell.nix Normal file
View file

@ -0,0 +1,33 @@
{ nixpkgs ? <nixpkgs> }:
let
overlay = import ./aux/overlay.nix;
pkgs = import nixpkgs { overlays = [ overlay ]; };
in
pkgs.mkShell {
name = "zilch-shell";
buildInputs = [
(pkgs.callPackage ./core {})
(pkgs.callPackage ./lang/go {})
(pkgs.callPackage ./docs/docread {})
(pkgs.callPackage ./cli {})
pkgs.chickenPackages_5.chickenEggs.breadline
pkgs.chickenPackages_5.chickenEggs.trace
pkgs.chickenPackages_5.chickenEggs.expand-full
pkgs.chickenPackages_5.chickenEggs.json
pkgs.chicken
pkgs.gdb
pkgs.libsodium
pkgs.tcl
pkgs.tk
pkgs.inotify-tools
pkgs.nodejs
pkgs.bpftrace
pkgs.s6
pkgs.rlwrap
];
}