Start with an empty shell.nix:
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
buildInputs = [
];
}
… and you’ll basically get that. As you discover more build dependencies you can add them to that shell.nix.
Start with an empty shell.nix:
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
buildInputs = [
];
}
… and you’ll basically get that. As you discover more build dependencies you can add them to that shell.nix.