blob: 23b096d061bae402b7ca59e90f2ac279c1dd3674 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
_self: super:
{
# Needs upgrading for guile 3
# inspekt3d = super.callPackage ./Deps/inspekt3d.nix {};
guix = super.pkgs.stdenv.mkDerivation rec {
pname = "guix";
name = "${pname}-${version}";
version = super.sources.guix.version;
src = super.sources.guix;
buildInputs = with super.pkgs; [
guile
# guile-gcrypt
# guile-sql
# guile-zlib
# guile-lzlib
# guile-avahi
# guile-git
# guile-json
gnutls
gnumake
sqlite
libgcrypt
gcc
];
};
llm = super.overrideSrc super.llm super.sources.llm;
nostr-rs-relay = super.callPackage ./Deps/nostr-rs-relay.nix { };
ollama = super.callPackage ./Deps/ollama.nix { 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=";
};
});
}
|