aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix10
1 files changed, 3 insertions, 7 deletions
diff --git a/shell.nix b/shell.nix
index 2fc0425..3958517 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,8 +1,4 @@
let
- pkgs = import <nixpkgs> {};
-in
-pkgs.mkShell {
- buildInputs = [
- pkgs.go
- ];
-}
+ pkgs = import <nixpkgs> { };
+ sources = import ./nix/sources.nix;
+in pkgs.mkShell { buildInputs = [ pkgs.go sources.vgo2nix sources.niv ]; }