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