This website requires JavaScript.
Explore
Help
Register
Sign in
mdebray
/
tvl-depot
Watch
1
Star
0
Fork
You've already forked tvl-depot
0
Code
Issues
Pull requests
Projects
Releases
Packages
Wiki
Activity
Actions
0045a0dd5a
tvl-depot
/
scratch
/
deepmind
/
part_two
/
shell.nix
11 lines
111 B
Nix
Raw
Normal View
History
Unescape
Escape
Remove default values for Nix expression parameters I'm not sure if this commit breaks everything in my monorepo. I think it will. Why am I doing this? Perhaps it's a bad idea. I don't fully understand how readTree works. My ignorance is costing me hours of time spent debugging. In an effort to better understand readTree, I'm removing the default values for my Nix expression parameters, which I believe have preventing errors from surfacing.
2020-02-23 23:29:32 +01:00
{
pkgs
,
.
.
.
}:
Attempt to support TypeScript for coding challenges I was a bit weaker than I expected to be in my most recent interview using TypeScript. To improve, I think I'd like to attempt solving some of the InterviewCake.com questions using TypeScript. If you've read the previous commits, the inspiration for `run` arose because I need to call `npx ts-code <file>`, which is easy enough to remember, but I'd still rather just call `run <file>`.
2020-02-11 18:07:04 +01:00
pkgs
.
mkShell
{
buildInputs
=
with
pkgs
;
[
nodejs
python3
go
goimports
]
;
}
Reference in a new issue
Copy permalink