Skip to content

Commit

Permalink
Merge pull request #203 from ethereumproject/fix/shell.nix
Browse files Browse the repository at this point in the history
Problem: shell.nix will not work if `pkgs` param is provided
  • Loading branch information
sorpaas committed Jun 15, 2017
2 parents 90f5830 + 88f4301 commit 4f624bb
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ pkgs ? (
let pkgs = (
let
nixpkgs = import <nixpkgs>;
pkgs_ = (nixpkgs {});
Expand All @@ -22,10 +22,9 @@
});
})
];
}))
}:
}));

with pkgs;
in with pkgs;

stdenv.mkDerivation {
name = "sputnikvm-env";
Expand Down

0 comments on commit 4f624bb

Please sign in to comment.