diff options
Diffstat (limited to 'libyuv_my.nix')
-rw-r--r-- | libyuv_my.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libyuv_my.nix b/libyuv_my.nix new file mode 100644 index 0000000..fd99913 --- /dev/null +++ b/libyuv_my.nix @@ -0,0 +1,14 @@ +{ inputs }: +self: super: { + libyuv_my = + with super; + libyuv.overrideAttrs (old: rec { + version = "git"; + src = fetchGit { + url = "https://chromium.googlesource.com/libyuv/libyuv/"; + ref = "main"; + rev = "5fb6c8cbe3a68d4c74f0e3166bdc33623cc5f8fe"; + }; + patches = [ ]; + }); +} |