Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Commit

Permalink
add back in dst
Browse files Browse the repository at this point in the history
  • Loading branch information
freesig committed Sep 10, 2020
1 parent 8c3edb9 commit 62c3554
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ let
node = pkgs.callPackage ./node { };
git = pkgs.callPackage ./git { };
linux = pkgs.callPackage ./linux { };
#dist = pkgs.callPackage ./dist {
# rust = rust;
# node = node;
# git = git;
# darwin = darwin;
#};
dist = pkgs.callPackage ./dist {
rust = rust;
node = node;
git = git;
darwin = darwin;
};
docs = pkgs.callPackage ./docs { };
n3h = pkgs.callPackage ./n3h { };
newrelic = pkgs.callPackage ./newrelic { };
Expand All @@ -42,7 +42,7 @@ let
pkgs = pkgs;
aws = aws;
darwin = darwin;
#dist = dist;
dist = dist;
docs = docs;
git = git;
linux = linux;
Expand All @@ -69,10 +69,10 @@ in

# needed for nix-env to discover install attributes
holochain = {
#hc = dist.cli.derivation;
#holochain = dist.holochain.derivation;
#sim2h_server = dist.sim2h_server.derivation;
#trycp_server = dist.trycp_server.derivation;
hc = dist.cli.derivation;
holochain = dist.holochain.derivation;
sim2h_server = dist.sim2h_server.derivation;
trycp_server = dist.trycp_server.derivation;
};

# expose other things
Expand Down
4 changes: 2 additions & 2 deletions nix-shell/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pkgs,
aws,
darwin,
#dist,
dist,
docs,
git,
linux,
Expand Down Expand Up @@ -95,7 +95,7 @@
++ (pkgs.callPackage ./flush { }).buildInputs
++ aws.buildInputs
++ darwin.buildInputs
#++ dist.buildInputs
++ dist.buildInputs
++ docs.buildInputs
++ git.buildInputs
++ linux.buildInputs
Expand Down

0 comments on commit 62c3554

Please sign in to comment.