summaryrefslogtreecommitdiff
path: root/toxic_my.nix
blob: 4329296e243a899a8f552d525b26dc7ec9e0e5d8 (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
{ inputs }:
self: super: {
  toxic_my =
    with super;
    (
      (toxic.override {
        libtoxcore = super.libtoxcore.overrideAttrs (old: rec {
          version = "git";
          src = fetchGit {
            url = "https://github.com/TokTok/c-toxcore";
            ref = "master";
            submodules = true;
          };
        });
        #    samba = null;
        #    dbus = null;
        #    libpulseaudio = null;
        #    avahi = null;
      }).overrideAttrs
      (oldAttrs: rec {
        version = "git";
        src = fetchGit {
          url = "https://github.com/Tox/toxic";
          ref = "master";
        };
      })
    );
}