summaryrefslogtreecommitdiff
path: root/libplacebo_my.nix
blob: 7d0a6d25db2d01596c0015acd5ad2352ea7b1e9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ inputs }:
self: super: {
  libplacebo_my =
    with super;
    (libplacebo.override { shaderc = self.shaderc_my; }).overrideAttrs (old: rec {
      version = "git";
      src = fetchGit {
        url = "https://code.videolan.org/videolan/libplacebo";
        ref = "master";
        #       rev = "ef202bcff8cce0e208e244e453d62dcad4c350ca";
      };
      nativeBuildInputs = old.nativeBuildInputs ++ [ xxHash ];
    });
}