diff options
author | sss <sss@dark-alexandr.net> | 2025-07-01 02:03:23 +0300 |
---|---|---|
committer | sss <sss@dark-alexandr.net> | 2025-07-01 02:03:23 +0300 |
commit | 188f69443c0873970d41217b52e11c46d584c06d (patch) | |
tree | eab9f51137f212c7bfe7e512490748dae371b698 /gmmlib.nix |
nix common overlays initial commit
Diffstat (limited to 'gmmlib.nix')
-rw-r--r-- | gmmlib.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gmmlib.nix b/gmmlib.nix new file mode 100644 index 0000000..32d760b --- /dev/null +++ b/gmmlib.nix @@ -0,0 +1,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"; + }; + }); +} |