summaryrefslogtreecommitdiff
path: root/gmmlib.nix
blob: 32d760bf66f9a1aa367ab5357c6db682d3d28f47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ inputs }:
self: super: {
  intel-gmmlib =
    with super;
    intel-gmmlib.overrideAttrs (oldAttrs: rec {
      version = "git";
      src = fetchGit {
        url = "https://github.com/intel/gmmlib";
        ref = "master";
        #           rev = "dcc4b85ea3728c848b62fbb164c00f43b519b6fb";
      };
    });
}