diff options
Diffstat (limited to 'Biz')
-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 {}; |