starbound: Fix post-update issues

pull/58/head
Tristan Daniël Maat 2022-10-13 00:30:07 +01:00
parent e8b16459d9
commit 78ecfd63a1
Signed by: tlater
GPG Key ID: 49670FD774E43268
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@
};
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) ["steam-runtime" "steamcmd"];
builtins.elem (lib.getName pkg) ["steam-original" "steam-runtime" "steamcmd"];
# Optimization for minecraft servers, see:
# https://bugs.mojang.com/browse/MC-183518

View File

@ -1,5 +1,5 @@
{pkgs, ...}: let
inherit (pkgs.lib) callPackage;
inherit (pkgs) callPackage;
in {
starbound = callPackage ./starbound {};
}