Glaxnimate: init at 0.5.1

This commit is contained in:
Tobias Bora 2023-01-08 11:49:23 +01:00 committed by Manuel Bärenz
parent 4102f23e2d
commit 92cbb32090
2 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,51 @@
{ lib
, stdenv
, fetchFromGitLab
, cmake
, zlib
, potrace
, ffmpeg
, libarchive
, python3
, qtbase
, qttools
, wrapQtAppsHook
# Python3
}:
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
ffmpeg
# gst_all_1.gst-libav # Note that since gst-libav-1.6, libav is actually ffmpeg
libarchive
python3
qtbase
qttools
];
meta = with lib; {
homepage = "https://gitlab.com/mattbas/glaxnimate";
description = "Simple vector animation program.";
license = licenses.gpl3;
maintainers = with maintainers; [ tobiasBora ];
platforms = platforms.linux;
};
}

View File

@ -3119,6 +3119,8 @@ with pkgs;
glasstty-ttf = callPackage ../data/fonts/glasstty-ttf { };
glaxnimate = libsForQt5.callPackage ../applications/video/glaxnimate { };
gmid = callPackage ../servers/gemini/gmid { };
gmni = callPackage ../applications/networking/browsers/gmni { };