blob: 8bf2272f3c83bc53471eb19a5b87c28eb07b0f55 (
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
|
_self: super:
{
autogen = super.callPackage ./Deps/autogen.nix { };
guile = super.guile_3_0;
guile-opengl = super.callPackage ./Deps/guile-opengl.nix { };
# The libfive build is broken...
#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
];
};
nostr-rs-relay = super.callPackage ./Deps/nostr-rs-relay.nix { };
ollama = super.callPackage ./Deps/ollama.nix { acceleration = "cuda"; };
}
|