summaryrefslogtreecommitdiff
path: root/srv
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2022-05-14 15:21:52 -0600
committerBrian Picciano <mediocregopher@gmail.com>2022-05-14 15:22:32 -0600
commitdd354bc323cd3176c9676444f99b33b69d0a2062 (patch)
tree3b697ea833fa22dd0e067f2ef00997039950cfc9 /srv
parent7e87c09c50983a25ed7c9816e11a856903ed89d5 (diff)
Create srv.dev-shell target in Makefile
Diffstat (limited to 'srv')
-rw-r--r--srv/default.nix17
1 files changed, 6 insertions, 11 deletions
diff --git a/srv/default.nix b/srv/default.nix
index a5aa6af..7067e1e 100644
--- a/srv/default.nix
+++ b/srv/default.nix
@@ -52,18 +52,13 @@
shell = stdenv.mkDerivation {
name = "mediocre-blog-srv-shell";
- buildInputs = [ go build ];
- shellHook = ''
- source ${init}
- cd src
- '';
+ buildInputs = [ go ];
+ shellHook = ''source ${init}'';
};
- test = stdenv.mkDerivation {
- name = "mediocre-blog-srv-test";
- buildInputs = [ go ];
- shellHook = ''
- source ${init}
- '';
+ shellWithBuild = stdenv.mkDerivation {
+ name = "mediocre-blog-srv-shell-with-build";
+ buildInputs = [ go build ];
+ shellHook = ''source ${init}'';
};
}