summaryrefslogtreecommitdiffstats
path: root/default.nix
blob: 738d469ce3f792c7bba986808360d6a7353bead9 (plain) (blame)
1
2
3
4
5
6
with import <nixpkgs> {};
((import ./bullet_hell.nix).bullet_hell {}).override {
  crateOverrides = defaultCrateOverrides // {
    bullet-hell = attrs: { buildInputs = [ SDL2 SDL2_image ]; };
  };
}