summaryrefslogtreecommitdiff
path: root/murmur-git.nix
blob: f7876bf666789b2a07c0c7f406b999fe0fc78b49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ inputs }:
self: super: {
  murmur-git =
    with super;
    murmur.overrideAttrs (oldAttrs: rec {
      version = "git";
      src = fetchGit {
        url = "https://github.com/mumble-voip/mumble";
        ref = "master";
        submodules = true;
      };
      patches = [ ];
    });
}