diff options
author | Ben Sima <ben@bsima.me> | 2025-06-04 14:27:49 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2025-06-13 11:19:37 -0400 |
commit | ec007bf2d3cef84da7b2d687807b223384177a05 (patch) | |
tree | 0df99691eb62358e6ba25c56bad4794906481cb0 /Omni/Bild/Deps.nix | |
parent | 996d5957f7dd2bd9367d6f1a2b808865f866c040 (diff) |
Re-enable datasette, llm, and aider
I had to update nixos-unstable-small and nixos-24_11 and disable a bunch of
tests, and then re-compile like the whole world, but aider is actually working,
finally.
Diffstat (limited to 'Omni/Bild/Deps.nix')
-rw-r--r-- | Omni/Bild/Deps.nix | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Omni/Bild/Deps.nix b/Omni/Bild/Deps.nix index b410f3b..ca296d4 100644 --- a/Omni/Bild/Deps.nix +++ b/Omni/Bild/Deps.nix @@ -1,9 +1,13 @@ -_self: super: { +_self: super: let + dontCheck = drv: drv.overrideAttrs (_: {doCheck = false;}); +in { cgit = super.overrideSrc super.cgit super.sources.cgit; # Needs upgrading for guile 3 # inspekt3d = super.callPackage ./Deps/inspekt3d.nix {}; + gupnp = dontCheck super.gupnp; + guix = super.pkgs.stdenv.mkDerivation rec { pname = "guix"; name = "${pname}-${version}"; @@ -28,5 +32,9 @@ _self: super: { nostr-rs-relay = super.callPackage ./Deps/nostr-rs-relay.nix {}; - radicale = super.radicale.overrideAttrs (_old: {doCheck = false;}); + radicale = dontCheck super.radicale; + + thrift = dontCheck super.thrift; + + valkey = dontCheck super.valkey; } |