nixops: build with pinned nixpkgs

This commit is contained in:
Erik Arvstedt 2020-04-08 17:29:50 +02:00
parent 0c4ba43ee8
commit 041ec55794
No known key found for this signature in database
GPG Key ID: 33312B944DD97846
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,7 @@
# 19.09 demands a suitable base image (defined in nixops-vbox/nix/virtualbox.nix) to
# start the virtualbox guest service during system activation.
{ stdenv, nixops, runCommand, fetchFromGitHub }:
{ pkgs, stdenv, runCommand, fetchFromGitHub }:
let
pluginData = {
@ -46,6 +46,7 @@ let
'';
nixopsRelease = import "${src}/release.nix" {
nixpkgs = pkgs.path;
inherit pluginData;
p = (p: with p; [ aws hetzner vbox libvirtd ]);
};