I use Nix btw
This commit is contained in:
parent
432ef1a72c
commit
25bc697309
8 changed files with 412 additions and 7 deletions
17
shell.nix
Normal file
17
shell.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
let
|
||||
inherit (import ./npins)
|
||||
nixpkgs
|
||||
rust-overlay
|
||||
;
|
||||
pkgs = import nixpkgs {
|
||||
overlays = [ (import rust-overlay) ];
|
||||
};
|
||||
in
|
||||
pkgs.mkShell {
|
||||
packages = [
|
||||
pkgs.bacon
|
||||
pkgs.just
|
||||
pkgs.rust-bin.stable.latest.default
|
||||
pkgs.sea-orm-cli
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue