Use buildPackages where appropriate

This commit is contained in:
Emery Hemingway 2022-05-03 16:39:49 -05:00
parent 99c0670abf
commit 532d6eec0f
2 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@ in rec {
novaImage = name:
{ gzip ? false, ... }@env:
boot:
pkgs.stdenv.mkDerivation {
pkgs.buildPackages.stdenv.mkDerivation {
name = name + "-nova-image";
build = compileBoot name env boot;

View File

@ -267,7 +267,7 @@ in {
# Create the tarball of the store to live in core ROM
system.build.tarball =
pkgs.callPackage "${modulesPath}/../lib/make-system-tarball.nix" {
pkgs.buildPackages.callPackage "${modulesPath}/../lib/make-system-tarball.nix" {
extraInputs = lib.attrsets.mapAttrsToList (_: child: child.package)
config.genode.init.children;
contents = erisContents;