Use deno from nixos-unstable
This commit is contained in:
parent
91b62def9c
commit
abc831a62e
13
shell.nix
13
shell.nix
|
@ -1,14 +1,15 @@
|
||||||
{ pkgs ? import <nixpkgs> {},
|
{ pkgs ? import <nixpkgs> {},
|
||||||
nightingale-pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/f7949198dcff52265b322ca8abf7450610e7e49e.tar.gz") {}
|
nightingale-pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/f7949198dcff52265b322ca8abf7450610e7e49e.tar.gz") {},
|
||||||
|
unstable ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz") {}
|
||||||
}:
|
}:
|
||||||
|
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
buildInputs = [
|
buildInputs = with pkgs; [
|
||||||
nightingale-pkgs.docker-compose
|
nightingale-pkgs.docker-compose
|
||||||
pkgs.nodejs
|
nodejs-16_x
|
||||||
pkgs.deno
|
unstable.deno
|
||||||
pkgs.nodePackages.json
|
nodePackages.json
|
||||||
pkgs.nodePackages.triton
|
nodePackages.triton
|
||||||
];
|
];
|
||||||
|
|
||||||
shellHook = ''
|
shellHook = ''
|
||||||
|
|
Loading…
Reference in a new issue