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
36d9f7a01b
tvl-depot
/
tools
/
run
/
shell.nix
10 lines
119 B
Nix
Raw
Normal View
History
Unescape
Escape
Drop support for lorri Lorri does not cleanly integrate with my corporate device, which cannot run NixOS. To expose dependencies to Emacs buffers, I will use nix-buffer.el, which reads its values from dir-locals.nix. To easily expose dependencies from my existing shell.nix files into dir-locals.nix, I wrote a Nix utility function.
2020-03-27 11:47:41 +01:00
let
pkgs
=
import
<nixpkgs>
{
}
;
in
pkgs
.
mkShell
{
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
buildInputs
=
with
pkgs
;
[
go
Drop support for lorri Lorri does not cleanly integrate with my corporate device, which cannot run NixOS. To expose dependencies to Emacs buffers, I will use nix-buffer.el, which reads its values from dir-locals.nix. To easily expose dependencies from my existing shell.nix files into dir-locals.nix, I wrote a Nix utility function.
2020-03-27 11:47:41 +01:00
goimports
godef
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
]
;
}
Reference in a new issue
Copy permalink