aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Picciano <me@mediocregopher.com>2024-06-08 20:47:07 +0200
committerBrian Picciano <me@mediocregopher.com>2024-06-08 20:47:07 +0200
commit931b4b8d3e61913778ed1bed002eb150171761ac (patch)
tree2913e5ab5dd8f185d34eba0f5997c4d00336e0ab
Initial commit
-rw-r--r--default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/default.nix b/default.nix
new file mode 100644
index 0000000..a9c5911
--- /dev/null
+++ b/default.nix
@@ -0,0 +1,17 @@
+{
+ pkgsSrc ? builtins.fetchTarball {
+ name = "nixpkgs-24.05";
+ url = "https://github.com/NixOS/nixpkgs/archive/5646423bfac84ec68dfc60f2a322e627ef0d6a95.tar.gz";
+ sha256 = "sha256:1lr1h35prqkd1mkmzriwlpvxcb34kmhc9dnr48gkm8hh089hifmx";
+ },
+}: let
+ pkgs = (import pkgsSrc) {};
+in {
+ shell = pkgs.mkShell {
+ name = "project-shell";
+ buildInputs = [
+ #pkgs.go
+ #pkgs.golangci-lint
+ ];
+ };
+}