Skip to content

Commit e6e4611

Browse files
committed
♿️(nix) Added nix-shell file with dependencies
Added `docker`, `docker-compose` and `gnumake` as dependencies for a dev environment for nix users While `docker` and `docker-compose` are not needed in shell.nix if the user has docker enabled, if docker daemon is not enabled system-wide, these programs will warn the user, insted of saying they are not installed.
1 parent eb23aef commit e6e4611

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to
1010

1111
## Added
1212

13+
- ♿️(nix) Added nix environment declaration #751
1314
- ✨(frontend) add pinning on doc detail #711
1415
- 🚩(frontend) feature flag analytic on copy as html #649
1516
- ✨(frontend) Custom block divider with export #698

shell.nix

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{ pkgs ? import <nixpkgs> {} }:
2+
pkgs.mkShellNoCC {
3+
nativeBuildInputs = with pkgs.buildPackages; [
4+
docker
5+
docker-compose
6+
gnumake
7+
];
8+
}
9+

0 commit comments

Comments
 (0)