lol

Revert Merge #214786: libvmaf: fix build for BSD

This reverts commit a55d7e3b945d04ec9d4c98d48b23377749e54003, reversing
changes made to 547f6ab7a24d4a6bb2793b573911188c7f8056e4.
This casused way too big rebuild and doesn't seem urgent.

+1 -10
+1 -10
pkgs/development/libraries/libvmaf/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, meson, ninja, nasm }: 1 + { lib, stdenv, fetchFromGitHub, meson, ninja, nasm }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libvmaf"; ··· 12 12 }; 13 13 14 14 sourceRoot = "source/libvmaf"; 15 - 16 - patches = [ 17 - # Backport fix for non-Linux, non-Darwin platforms. 18 - (fetchpatch { 19 - url = "https://github.com/Netflix/vmaf/commit/f47640f9ffee9494571bd7c9622e353660c93fc4.patch"; 20 - stripLen = 1; 21 - sha256 = "rsTKuqp8VJG5DBDpixPke3LrdfjKzUO945i+iL0n7CY="; 22 - }) 23 - ]; 24 15 25 16 nativeBuildInputs = [ meson ninja nasm ]; 26 17