From abc831a62e74d86d406534407069f011ed255992 Mon Sep 17 00:00:00 2001 From: teutat3s Date: Fri, 1 Apr 2022 10:52:14 +0200 Subject: [PATCH] Use deno from nixos-unstable --- shell.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/shell.nix b/shell.nix index edba4b7..42f0b26 100644 --- a/shell.nix +++ b/shell.nix @@ -1,14 +1,15 @@ { pkgs ? import {}, - 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 { - buildInputs = [ + buildInputs = with pkgs; [ nightingale-pkgs.docker-compose - pkgs.nodejs - pkgs.deno - pkgs.nodePackages.json - pkgs.nodePackages.triton + nodejs-16_x + unstable.deno + nodePackages.json + nodePackages.triton ]; shellHook = ''