mirror of
https://github.com/librekeys/picoforge.git
synced 2026-04-14 08:44:16 -07:00
14 lines
415 B
Nix
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;
|
|
}
|