depot/third_party/nixpkgs/pkgs/games/0ad/default.nix

15 lines
241 B
Nix
Raw Normal View History

{ wxGTK, newScope }:
let
callPackage = newScope self;
self = {
zeroad-unwrapped = callPackage ./game.nix { inherit wxGTK; };
zeroad-data = callPackage ./data.nix { };
zeroad = callPackage ./wrapper.nix { };
};
in self