summaryrefslogtreecommitdiffstats
path: root/default.nix
diff options
context:
space:
mode:
authorRaymond Hogenson <rhogenson@posteo.net>2018-08-18 11:01:49 -0400
committerRaymond Hogenson <rhogenson@posteo.net>2018-08-18 11:01:49 -0400
commitdcf41c0ab884c124ffda8f616ec617c1e584255e (patch)
treeb7e44080dc9f607bd591ce2e52b30b04b668fb13 /default.nix
parent950e60067ce036e831e81afeec180a63511f9e65 (diff)
downloadstallman-shooter-dcf41c0ab884c124ffda8f616ec617c1e584255e.tar.zst
Add textures
These were fun to make
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix
index a9e20f7..738d469 100644
--- a/default.nix
+++ b/default.nix
@@ -1,6 +1,6 @@
with import <nixpkgs> {};
((import ./bullet_hell.nix).bullet_hell {}).override {
crateOverrides = defaultCrateOverrides // {
- bullet-hell = attrs: { buildInputs = [ SDL2 ]; };
+ bullet-hell = attrs: { buildInputs = [ SDL2 SDL2_image ]; };
};
}