summary refs log blame commit diff
path: root/pkgs/games/0ad/default.nix
blob: d53942766bb22e63ea2bce6c8ed7501bd8c61f7f (plain) (tree)
1
2
3
4
5
6
7
8
9
                    

   
                              
 
          
                                                                 
 
                                             
 
                                           

    
       
{ 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