working so far

This commit is contained in:
2026-06-19 14:50:43 -04:00
commit e6cd59465f
4 changed files with 253 additions and 0 deletions

11
default.nix Normal file
View File

@@ -0,0 +1,11 @@
# default.nix — local test entry-point
# Usage:
# nix-build (builds the package)
# nix-shell (drops you into a shell with the package on PATH)
#
# To override nixpkgs:
# nix-build --arg nixpkgs '(import <nixpkgs> {})'
{ nixpkgs ? import <nixpkgs> { config.allowUnfree = true; } }:
nixpkgs.callPackage ./package.nix { }