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

Commit

Permalink
Add a nix shell
Browse files Browse the repository at this point in the history
  • Loading branch information
jsierles committed Jun 9, 2022
1 parent 13d308e commit b029a9f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,7 @@ website/vendor

# Keep windows files with windows line endings
*.winfile eol=crlf

.direnv
.envrc
terraform-provider-fly
12 changes: 12 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
with (import (fetchTarball https://github.com/nixos/nixpkgs/archive/592dc9ed7f049c565e9d7c04a4907e57ae17e2d9.tar.gz) {});

let

basePackages = [
go
];

in mkShell {
buildInputs = basePackages;

}

0 comments on commit b029a9f

Please sign in to comment.