Skip to content

Commit ae0058c

Browse files
committed
chore: add shell.nix file
1 parent 23fb9a9 commit ae0058c

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

shell.nix

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
with import (fetchTarball https://github.com/NixOS/nixpkgs/archive/22.05.tar.gz) { };
2+
3+
stdenv.mkDerivation {
4+
name = "--libraryname--";
5+
6+
buildInputs = with pkgs; [
7+
git
8+
nodejs
9+
yarn
10+
];
11+
}

tools/init.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ const modifyFiles = [
3333
'package.json',
3434
'README.md',
3535
'CODE_OF_CONDUCT.md',
36+
'shell.nix',
3637
];
3738

3839
/**

0 commit comments

Comments
 (0)