Files
skate3recomp-nix/default.nix
2026-06-19 14:50:43 -04:00

12 lines
347 B
Nix

# 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 { }