Skip to content

Instantly share code, notes, and snippets.

@thedavidmeister
Last active June 27, 2019 07:52
Show Gist options
  • Save thedavidmeister/48dafda7600cae0c6071aedbd9d3125b to your computer and use it in GitHub Desktop.
Save thedavidmeister/48dafda7600cae0c6071aedbd9d3125b to your computer and use it in GitHub Desktop.
let
holonix = import (fetchTarball {
url = "https://github.com/holochain/holonix/tarball/master";
});
# holonix = import ../holonix;
in
with holonix.pkgs;
{
core-shell = stdenv.mkDerivation (holonix.shell // {
name = "app-shell";
buildInputs = []
++ holonix.shell.buildInputs
;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment