nix-book/source/shell-recipes/shell-with-nixpkgs/shell.nix
2023-06-13 20:33:24 +01:00

7 lines
84 B
Nix

with (import <nixpkgs> {});
mkShell {
buildInputs = [
hello
cowsay
];
}