forked from divnix/digga
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A very inmature exploration of divnix#38
- Loading branch information
David Arnold
committed
Dec 29, 2020
1 parent
9321473
commit 9c42f70
Showing
4 changed files
with
50 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[ | ||
./rust | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
with pkgs; | ||
|
||
mkDevShell { | ||
name = "Personal Rust DevShell"; | ||
|
||
packages = [ | ||
latest.rustChannels.stable.rust | ||
wasm-bindgen-cli | ||
binaryen | ||
|
||
ncurses | ||
pkgconfig | ||
openssl | ||
openssl.dev | ||
]; | ||
|
||
env.RUST_BACKTRACE = "1"; | ||
|
||
commands = [ | ||
{ | ||
name = "hello"; | ||
help = "say hello"; | ||
category = "fun"; | ||
command = "echo '''hello''' "; | ||
} | ||
]; | ||
} |