diff options
author | Ben Sima <ben@bsima.me> | 2022-12-01 15:34:11 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-12-01 15:34:11 -0500 |
commit | 3362213d8789b0aa0716f6ee8a0caa854a269571 (patch) | |
tree | c4104db4329017c462ece3f350f354b650d4f178 | |
parent | 28b99fa065b2b20c24a51c1f73d501191afbd1a7 (diff) |
Build gnutls with guile bindings
-rw-r--r-- | Biz/Bild.nix | 1 | ||||
-rw-r--r-- | Biz/Bild/Deps.nix | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Biz/Bild.nix b/Biz/Bild.nix index ae3201c..a49f10e 100644 --- a/Biz/Bild.nix +++ b/Biz/Bild.nix @@ -41,6 +41,7 @@ rec { # remove this when I switch to all-nix builds bildRuntimeDeps = with nixpkgs; [ pkg-config + gnutls guile_3_0 SDL private.ghcPackageSetBild diff --git a/Biz/Bild/Deps.nix b/Biz/Bild/Deps.nix index c236a0c..a6e31a4 100644 --- a/Biz/Bild/Deps.nix +++ b/Biz/Bild/Deps.nix @@ -34,6 +34,9 @@ in rec autogen = super.autogen.overrideAttrs (old: old // { buildInputs = super.lib.lists.remove super.guile old.buildInputs ++ [super.guile_2_0]; }); + + gnutls = super.gnutls.override { guileBindings = true; }; + guile-opengl = super.callPackage ./Deps/guile-opengl.nix {}; # The libfive build is broken... #inspekt3d = super.callPackage ./Deps/inspekt3d.nix {}; |