ovito: Use qt mkDerivation so application is proprely wrapped

This commit is contained in:
Tyson Whitehead
2021-02-01 13:10:10 -05:00
parent 95119fbace
commit c44bd5abc3

View File

@@ -1,8 +1,8 @@
{ stdenv, fetchFromGitLab, cmake
{ mkDerivation, lib, fetchFromGitLab, cmake
, boost, netcdf, hdf5, fftwSinglePrec, muparser, openssl, ffmpeg, python
, qtbase, qtsvg, qttools, qscintilla }:
stdenv.mkDerivation rec {
mkDerivation rec {
pname = "ovito";
version = "3.4.0";
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
qtbase qtsvg qttools qscintilla
];
meta = with stdenv.lib; {
meta = with lib; {
description = "Scientific visualization and analysis software for atomistic and particle simulation data";
homepage = https://ovito.org;
license = licenses.gpl3;