diff options
author | Ben Sima <ben@bsima.me> | 2022-07-20 09:49:02 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-07-20 09:49:02 -0400 |
commit | 056902258d73ba4a896325f5cf544f075d5a9efd (patch) | |
tree | b347dcb5430e00af359f25f19d05b72c14fd6164 /Biz | |
parent | bf7fd7cc9da9a7d9cff5e7350b047ce82e50c207 (diff) |
Re-enable scheme builds
I had thought that I needed some unmerged commits to nixpkgs that enable Guile
3.0, but turns out I just needed to use a different target name :P
Diffstat (limited to 'Biz')
-rw-r--r-- | Biz/Bild.hs | 2 | ||||
-rw-r--r-- | Biz/Bild.nix | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Biz/Bild.hs b/Biz/Bild.hs index dc38e39..016b48f 100644 --- a/Biz/Bild.hs +++ b/Biz/Bild.hs @@ -235,7 +235,7 @@ data Target = Target isBuildableNs :: Namespace -> Bool isBuildableNs (Namespace _ Namespace.Hs) = True isBuildableNs (Namespace _ Namespace.Lisp) = True -isBuildableNs (Namespace _ Namespace.Scm) = False +isBuildableNs (Namespace _ Namespace.Scm) = True isBuildableNs (Namespace _ Namespace.Rs) = True isBuildableNs ns | ns `elem` nixTargets = True diff --git a/Biz/Bild.nix b/Biz/Bild.nix index 700ea36..47194ea 100644 --- a/Biz/Bild.nix +++ b/Biz/Bild.nix @@ -160,7 +160,7 @@ rec { wemux ] ++ lib.optional nixpkgs.stdenv.isLinux [ # scheme deps (i think these are broken on macOS) - guile + guile_3_0 #inspekt3d #libfive ]; |