diff options
author | Ben Sima <ben@bsima.me> | 2022-10-25 21:41:34 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-10-26 08:37:05 -0400 |
commit | e5fa903ab1a7a4dd86b799ad209e5b1713382025 (patch) | |
tree | 958bd0522b601d45c27fa2ac1bf1fb8484f4ebd6 /Biz/Bild.nix | |
parent | dbac7bc52f36be86ee63acee357a693ce3d1689f (diff) |
Support building with SDL
As a byproduct this also (sorta) generalizes how I pass flags to the C compiler
using pkg-config, instead of using the guile-config. Now the 'lib' metadata will
be added with 'pkg-config --libs', and the 'sys' metadata will be added with
'pkg-config --cflags'. I'm not *really* sure what the difference is, but if it
works it works.
Diffstat (limited to 'Biz/Bild.nix')
-rw-r--r-- | Biz/Bild.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Biz/Bild.nix b/Biz/Bild.nix index b6946c9..ae3201c 100644 --- a/Biz/Bild.nix +++ b/Biz/Bild.nix @@ -42,6 +42,7 @@ rec { bildRuntimeDeps = with nixpkgs; [ pkg-config guile_3_0 + SDL private.ghcPackageSetBild rustc gcc |