summaryrefslogtreecommitdiff
path: root/Biz/Bild/Deps.nix
blob: 8f44ddebdea96bf061a8c5a8ec13fa91e0e06a5d (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
_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 { };
}