ovito: Switch from avlib to ffmpeg (avlib is likely going away)

This commit is contained in:
Tyson Whitehead
2021-01-31 01:03:37 -05:00
parent 2a26edb361
commit 95119fbace
2 changed files with 3 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ self: super: pkgs: with pkgs; {
openslide = callPackage ./openslide { };
ovito = libsForQt5.callPackage ./ovito.nix { libav = libav_12; };
ovito = libsForQt5.callPackage ./ovito.nix { };
pythonOverrides = lib.composeExtensions super.pythonOverrides (import ./python-packages.nix pkgs);

View File

@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitLab, cmake
, boost, netcdf, hdf5, fftwSinglePrec, muparser, openssl, libav, python
, boost, netcdf, hdf5, fftwSinglePrec, muparser, openssl, ffmpeg, python
, qtbase, qtsvg, qttools, qscintilla }:
stdenv.mkDerivation rec {
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
fftwSinglePrec
muparser
openssl
libav
ffmpeg
python
qtbase qtsvg qttools qscintilla
];