mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
openraPackages_2019: don't use pkgs.lib
This commit is contained in:
parent
f626023bea
commit
44f2f9efcd
@ -6,11 +6,9 @@
|
||||
Additional engines or mods can be added with `openraPackages.buildOpenRAEngine` (function around `engine.nix`)
|
||||
and `openraPackages.buildOpenRAMod` (function around `mod.nix`), respectively.
|
||||
*/
|
||||
pkgs:
|
||||
{ pkgs, lib }:
|
||||
|
||||
let
|
||||
lib = pkgs.lib;
|
||||
|
||||
/* Building an engine or out-of-tree mod is very similar,
|
||||
but different enough not to be able to build them with the same package definition,
|
||||
so instaed we define what is common between them in a separate file.
|
||||
|
@ -37138,7 +37138,10 @@ with pkgs;
|
||||
|
||||
otto-matic = callPackage ../games/otto-matic { };
|
||||
|
||||
openraPackages_2019 = import ../games/openra_2019 pkgs.__splicedPackages;
|
||||
openraPackages_2019 = import ../games/openra_2019 {
|
||||
inherit lib;
|
||||
pkgs = pkgs.__splicedPackages;
|
||||
};
|
||||
|
||||
openra_2019 = openraPackages_2019.engines.release;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user