diff options
Diffstat (limited to 'libva_my.nix')
-rw-r--r-- | libva_my.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libva_my.nix b/libva_my.nix new file mode 100644 index 0000000..48654ef --- /dev/null +++ b/libva_my.nix @@ -0,0 +1,13 @@ +{ inputs }: +self: super: { + libva_my = + with super; + libva.overrideAttrs (oldAttrs: rec { + version = "git"; + src = fetchGit { + url = "https://github.com/intel/libva"; + ref = "master"; + }; + patches = [ ]; + }); +} |