summaryrefslogtreecommitdiff
path: root/intel-compute-runtime.nix
blob: b5ebe54c9d8bdc6272ea5fdb3512ab184d3ffd3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ inputs }:
(self: super: {
  intel-compute-runtime =
    with super;
    intel-compute-runtime.overrideAttrs (oldAttrs: rec {
                  version = "25.22.33944.9";
#      version = "25.18.33578.11";
      src = fetchFromGitHub {
        owner = "intel";
        repo = "compute-runtime";
        rev = version;
        hash = "sha256-99FV6U4Gx5cOsS9tcIR97u++7+Pt7W/hEdJyVnLWuEw=";
#                        hash = "sha256-5AKQieCc6Aq+Yg/ELQlDXdsvuSZqNuM6ZZlsqc0zwrU=";
      };
    });
})