summaryrefslogtreecommitdiff
path: root/intel-compute-runtime.nix
diff options
context:
space:
mode:
authorsss <sss@dark-alexandr.net>2025-07-01 02:03:23 +0300
committersss <sss@dark-alexandr.net>2025-07-01 02:03:23 +0300
commit188f69443c0873970d41217b52e11c46d584c06d (patch)
treeeab9f51137f212c7bfe7e512490748dae371b698 /intel-compute-runtime.nix
nix common overlays initial commit
Diffstat (limited to 'intel-compute-runtime.nix')
-rw-r--r--intel-compute-runtime.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/intel-compute-runtime.nix b/intel-compute-runtime.nix
new file mode 100644
index 0000000..b5ebe54
--- /dev/null
+++ b/intel-compute-runtime.nix
@@ -0,0 +1,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=";
+ };
+ });
+})