shellify-0.10.0: test/outputs/two-build-inputs-and-command-shell.nix
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.cowsay
pkgs.python
];
shellHook = ''
cowsay
'';
}
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.cowsay
pkgs.python
];
shellHook = ''
cowsay
'';
}