11 lines
269 B
Nix
11 lines
269 B
Nix
# build.nix
|
|
let
|
|
# Import your nixpkgs channel. The <> syntax finds it automatically.
|
|
pkgs = import <nixpkgs> {
|
|
# Apply your overlay here
|
|
overlays = [ (import ./sage.nix) ];
|
|
};
|
|
in
|
|
# This file now evaluates to exactly one thing: the sage package.
|
|
pkgs.sage
|