aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2020-02-07 18:15:49 -0500
committerGitHub <noreply@github.com>2020-02-07 18:15:49 -0500
commitae03b169343f1dbae8e83c6fa15bdabc01a9fe8d (patch)
tree626e06081ac1f5eb8f4c69aa0dc61ad1e4d5f114 /shell.nix
parenta7849dd65d6ed8e1d61c9ad6444be6b9b72e2c57 (diff)
downloadxesite-ae03b169343f1dbae8e83c6fa15bdabc01a9fe8d.tar.xz
xesite-ae03b169343f1dbae8e83c6fa15bdabc01a9fe8d.zip
niv (#114)
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 ]; }