diff options
author | Ben Sima <ben@bsima.me> | 2024-12-31 13:48:05 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2024-12-31 13:48:05 -0500 |
commit | 3790d334c994db7a0e1eac9c130c2b1316c78c35 (patch) | |
tree | df8bb9ecc6f1273864f8fc88082906526e0ab324 /Omni/Bild/Deps.nix | |
parent | 27904066fd204a2b844c27132e86f83acf217eed (diff) |
Upgrade nixos 24.05 -> 24.11, ghc 9.4.8 -> 9.6.6
It's good to update, I think nixos 24.05 was deprecated anyway. The iPython
dontCheck is because there was a test timeout; I don't even know why iPython is
being pulled in but whatever.
Diffstat (limited to 'Omni/Bild/Deps.nix')
-rw-r--r-- | Omni/Bild/Deps.nix | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/Omni/Bild/Deps.nix b/Omni/Bild/Deps.nix index 9ba0b31..3414418 100644 --- a/Omni/Bild/Deps.nix +++ b/Omni/Bild/Deps.nix @@ -32,14 +32,5 @@ _self: super: ollama = super.ollama.override { acceleration = "cuda"; }; - # https://github.com/NixOS/nixpkgs/issues/317147#issuecomment-2147343125 - radicale = super.radicale.overrideAttrs (_old: rec { - version = "3.2.0"; - src = super.fetchFromGitHub { - owner = "Kozea"; - repo = "Radicale"; - rev = "v${version}"; - hash = "sha256-RxC8VOfdTXJZiAroDHTKjJqGWu65Z5uyb4WK1LOqubQ="; - }; - }); + radicale = super.radicale.overrideAttrs (_old: { doCheck = false; }); } |