1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 03:25:02 +00:00

Merge pull request #153760 from prusnak/ovito

ovito: 3.4.0 -> 3.6.0
This commit is contained in:
Pavol Rusnak 2022-01-06 22:31:26 +01:00 committed by GitHub
commit ea185c3f6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 35 additions and 13 deletions

View file

@ -1,16 +1,33 @@
{ mkDerivation, lib, stdenv, fetchFromGitLab, cmake
, boost, netcdf, hdf5, fftwSinglePrec, muparser, openssl, ffmpeg, python
, qtbase, qtsvg, qttools, qscintilla }:
{ mkDerivation
, lib
, stdenv
, fetchFromGitLab
, cmake
, boost
, bzip2
, ffmpeg
, fftwSinglePrec
, hdf5
, muparser
, netcdf
, openssl
, python3
, qscintilla
, qtbase
, qtsvg
, qttools
, VideoDecodeAcceleration
}:
mkDerivation rec {
pname = "ovito";
version = "3.4.0";
version = "3.6.0";
src = fetchFromGitLab {
owner = "stuko";
repo = "ovito";
rev = "v${version}";
sha256 = "1y3wr6yzpsl0qm7cicp2mppfszxd0fgx8hm99in9wff9qd0r16b5";
sha256 = "sha256-yQ8gSe/QM1RRNxk4bDJ+K5QX0eYjZ+iG3QOHj01tJhY=";
};
nativeBuildInputs = [
@ -19,17 +36,20 @@ mkDerivation rec {
buildInputs = [
boost
netcdf
hdf5
fftwSinglePrec
muparser
openssl
bzip2
ffmpeg
python
fftwSinglePrec
hdf5
muparser
netcdf
openssl
python3
qscintilla
qtbase
qtsvg
qttools
qscintilla
] ++ lib.optionals stdenv.isDarwin [
VideoDecodeAcceleration
];
meta = with lib; {

View file

@ -8532,7 +8532,9 @@ with pkgs;
ovh-ttyrec = callPackage ../tools/misc/ovh-ttyrec { };
ovito = libsForQt5.callPackage ../applications/graphics/ovito { };
ovito = libsForQt5.callPackage ../applications/graphics/ovito {
inherit (darwin.apple_sdk.frameworks) VideoDecodeAcceleration;
};
owncloud-client = libsForQt5.callPackage ../applications/networking/owncloud-client { };