Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

movit: 1.5.1 -> 1.6.2, fix build after #49310

Fixes #49883

+7 -5
+7 -5
pkgs/development/libraries/movit/default.nix
··· 1 - { stdenv, fetchurl, SDL, eigen, epoxy, fftw, gtest, pkgconfig }: 1 + { stdenv, fetchurl, SDL2, eigen, epoxy, fftw, gtest, pkgconfig }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "movit-${version}"; 5 - version = "1.5.1"; 5 + version = "1.6.2"; 6 6 7 7 src = fetchurl { 8 8 url = "https://movit.sesse.net/${name}.tar.gz"; 9 - sha256 = "1259iq2ixiprk4mn7ypapinbg2w1sjq1aivzzbbch9i23kcfsd44"; 9 + sha256 = "1q9h086v6h3da4b9qyflcjx73cgnqjhb92rv6g4j90m34dndaa3l"; 10 10 }; 11 11 12 12 outputs = [ "out" "dev" ]; 13 13 14 - GTEST_DIR = "${gtest}"; 14 + GTEST_DIR = "${gtest.src}/googletest"; 15 15 16 16 propagatedBuildInputs = [ eigen epoxy ]; 17 17 18 18 nativeBuildInputs = [ pkgconfig ]; 19 - buildInputs = [ SDL fftw gtest ]; 19 + buildInputs = [ SDL2 fftw gtest ]; 20 + 21 + enableParallelBuilding = true; 20 22 21 23 meta = with stdenv.lib; { 22 24 description = "High-performance, high-quality video filters for the GPU";