-
Notifications
You must be signed in to change notification settings - Fork 10
Home
Dan Connolly edited this page Nov 29, 2015
·
4 revisions
Welcome to the typhon wiki!
The dump.py utility dumps out AST files (*.mt, *.mast). It imports various bits of typhon which import from rpython
.
What's an easy way to satisfy this dependency?
The vm.nix script shows getting the pypy source (a specific version; 5f8302b8bf9f
as of this writing):
typhon$ hg clone -r 5f8302b8bf9f https://bitbucket.org/pypy/pypy
But that doesn't seem to suffice.
From the build inputs from a recent job, we see the nixpkgs version is 81e47bc
. So:
$ git clone --depth 500 git://github.com/NixOS/nixpkgs.git
$ cd nixpkgs
nixpkgs$ git checkout 81e47bc
nixpkgs$ nix-env -f . -i pypy
That didn't work either