mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Glaxnimate: init at 0.5.1
This commit is contained in:
parent
4102f23e2d
commit
92cbb32090
51
pkgs/applications/video/glaxnimate/default.nix
Normal file
51
pkgs/applications/video/glaxnimate/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user