From ccba6c26c40680a15e8d833056b515019e8a5b75 Mon Sep 17 00:00:00 2001 From: Florian Sesser <florian@privatestorage.io> Date: Tue, 8 Jun 2021 14:32:06 +0000 Subject: [PATCH] Use old Morph and new Vagrant consistently --- shell.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shell.nix b/shell.nix index b15b7c66..eeea205e 100644 --- a/shell.nix +++ b/shell.nix @@ -2,11 +2,13 @@ let nixpkgs-pin = builtins.fromJSON (builtins.readFile ./nixpkgs.json); nixpkgs-src = builtins.fetchTarball nixpkgs-pin; nixpkgs = import nixpkgs-src { }; + stable2105 = import (builtins.fetchTarball https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz) { }; in { pkgs ? nixpkgs }: pkgs.mkShell { NIX_PATH = "nixpkgs=${nixpkgs.path}"; buildInputs = [ pkgs.morph + stable2105.vagrant ]; } -- GitLab