packages feed

shellify-0.10.0: test/outputs/multiple-repository-sources-shell.nix

{ foo, pkgs ? import <nixpkgs> {} }:

pkgs.mkShell {

  buildInputs = [
    foo.cowsay
    pkgs.python
  ];

}