Files
picoforge/default.nix
jetcookies 681ac9fcb2 ci: let nix build and populate cache
The cachix-related variables need to be modified to their actual values.
2026-02-11 11:10:57 +08:00

14 lines
415 B
Nix

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