Fix virtualbox deployment for 19.09
Without this, starting the virtualbox guest service fails during machine activation. This is due to an incompatible NixOS machine base image. Fix this by using an updated version of nixops.
This commit is contained in:
parent
a50dc981af
commit
cfafcb5d32
3 changed files with 90 additions and 1 deletions
|
|
@ -6,7 +6,9 @@ with import nixpkgs { };
|
|||
stdenv.mkDerivation rec {
|
||||
name = "nix-bitcoin-environment";
|
||||
|
||||
buildInputs = [ pkgs.nixops pkgs.figlet pkgs.apg pkgs.openssl ];
|
||||
nixops19_09 = callPackage ./pkgs/nixops {};
|
||||
|
||||
buildInputs = with pkgs; [ nixops19_09 figlet apg openssl ];
|
||||
|
||||
shellHook = ''
|
||||
export NIX_PATH="nixpkgs=${nixpkgs}:."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue