about summary refs log tree commit diff
path: root/humblebundle/default.nix
blob: 6e733603ce76352570e8e4eba41d936711eed159 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ email ? null, password ? null }:

with import <nixpkgs> {};

let
  self = rec {
    callPackage = pkgs.lib.callPackageWith (pkgs // self);

    fetchHumbleBundle = callPackage ./fetch-humble-bundle {
      inherit email password;
    };

    bastion = callPackage ./bastion.nix {};
    cavestoryplus = callPackage ./cavestoryplus.nix {};
    fez = callPackage ./fez.nix {};
    ftl = callPackage ./ftl.nix {};
    hammerwatch = callPackage ./hammerwatch.nix {};
    jamestown = callPackage ./jamestown.nix {};
    megabytepunch = callPackage ./megabytepunch.nix {};
    rocketbirds = callPackage ./rocketbirds.nix {};
    spaz = callPackage ./spaz.nix {};
    swordsandsoldiers = callPackage ./swordsandsoldiers.nix {};
  };
in self