nixpkgs/pkgs/applications/video/glaxnimate/default.nix
2023-01-10 14:03:32 +01:00

82 lines
1.6 KiB
Nix

{ lib
, stdenv
, fetchFromGitLab
, cmake
, zlib
, potrace
, ffmpeg
, libarchive
, python3
, qtbase
, qttools
, wrapQtAppsHook
, testers
, qtsvg
, qtimageformats
# For the tests
, glaxnimate # Call itself, for the tests
, xvfb-run
}:
let
# TODO: try to add a python library, see toPythonModule in doc/languages-frameworks/python.section.md
python3WithLibs = python3.withPackages (ps: with ps; [
# In data/lib/python-lottie/requirements.txt
numpy
pillow
cairosvg
fonttools
grapheme
opencv4
pyqt5
qscintilla
# Not sure if needed, but appears in some files
pyyaml
requests
pybind11
]);
in
stdenv.mkDerivation rec {
pname = "glaxnimate";
version = "0.5.1";
src = fetchFromGitLab {
owner = "mattbas";
repo = "${pname}";
rev = "${version}";
sha256 = "G4ykcOvXXnVIQZUYpRIrALtDSsGqxMvDtcmobjjtlKw=";
fetchSubmodules = true;
};
nativeBuildInputs = [
cmake
wrapQtAppsHook
];
buildInputs = [
zlib
potrace
# Upstream asks for libav dependency, which is fulfilled by ffmpeg
ffmpeg
libarchive
qtbase
qttools
qtsvg
qtimageformats
python3WithLibs
];
qtWrapperArgs = [ ''--prefix PATH : ${python3WithLibs}/bin'' ];
passthru.tests.version = lib.optionalAttrs stdenv.isLinux (testers.testVersion {
package = glaxnimate;
command = "${xvfb-run}/bin/xvfb-run glaxnimate --version";
});
meta = with lib; {
homepage = "https://gitlab.com/mattbas/glaxnimate";
description = "Simple vector animation program.";
license = licenses.gpl3;
maintainers = with maintainers; [ tobiasBora ];
};
}