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
47a0b45f5f
tvl-depot
/
tools
/
run
/
shell.nix
8 lines
74 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
,
.
.
.
}:
Begin supporting run I'd like to be able to just call `run file.py` and have a program DWIM. I'm working on run as a step in this direction. Define a simple configuration that maps file extensions to template strings where "$file" is replaced with the argv[1]. It basically works but there are outstanding TODOs. See the README and source code for more information.
2020-02-11 18:04:03 +01:00
pkgs
.
mkShell
{
buildInputs
=
with
pkgs
;
[
go
]
;
}
Reference in a new issue
Copy permalink