# This file describes your repository contents. # It should return a set of nix derivations. # It should NOT import . Instead, you should take pkgs as an argument. # Having pkgs default to is fine though, and it lets you use short # commands such as: # nix-build -A mypackage { pkgs ? import { } }: rec { picoforge = pkgs.callPackage ./package.nix { }; default = picoforge; }