Merge pull request #1306 from urbit/ge-additions-nix-shell

adds ge-additions package to urbit nix-shell config
This commit is contained in:
Joe Bryan 2019-06-28 11:40:36 -07:00 committed by GitHub
commit 3ce90b1f3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -20,7 +20,7 @@ let
vendor =
with deps;
[ argon2 ed25519 h2o murmur3 scrypt secp256k1 sni softfloat3 uv ent ];
[ argon2 ed25519 h2o murmur3 scrypt secp256k1 sni softfloat3 uv ent ge-additions ];
in

View File

@ -9,7 +9,8 @@ in
import ./default.nix {
inherit pkgs;
debug = false;
inherit (tlon) ent;
inherit (tlon)
ent ge-additions;
inherit (deps)
argon2 ed25519 h2o murmur3 scrypt secp256k1 sni softfloat3 uv;
}