summaryrefslogtreecommitdiff
path: root/nheko_my.nix
blob: 81d86697aae6fdc93fe9fe65c39f7e01d86fb9b9 (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: {
  nheko_my =
    with super;
    with gnome;
    with gsettings-desktop-schemas;
    (nheko.override {
      mtxclient = mtxclient.overrideAttrs (old: rec {
        src = fetchGit {
          url = "https://github.com/Nheko-Reborn/mtxclient";
          ref = "master";
        };
      });
    }).overrideAttrs
      (oldAttrs: rec {
        #                version = "2023-02-15";
        version = "git";
        src = fetchGit {
          url = "https://github.com/Nheko-Reborn/nheko";
          ref = "master";
          #                  rev = "d95d2fcaa9e3b8ab47275d2bf56e5a7ebddd37e7";
        };
        nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ wrapGAppsHook ];
        buildInputs = oldAttrs.buildInputs ++ [
          gsettings-desktop-schemas
        ];
      });
}