summaryrefslogtreecommitdiff
path: root/neochat-git.nix
blob: 9422eb3154932649b3a8642c8671b89018618f5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ inputs }:
self: super: {
  neochat-git =
    with super;
    neochat.overrideAttrs (oldAttrs: rec {
      version = "git";
      src = fetchGit {
        url = "https://github.com/KDE/neochat/";
        ref = "master";
      };
    });
}