nixpkgs/pkgs/applications/graphics/synfigstudio/default.nix
2022-06-25 23:36:11 +02:00

142 lines
2.1 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, autoreconfHook
, wrapGAppsHook
, boost
, cairo
, gettext
, glibmm
, gtk3
, gtkmm3
, libjack2
, libsigcxx
, libxmlxx
, mlt
, pango
, imagemagick
, intltool
, gnome
, harfbuzz
, freetype
, fribidi
, openexr
, fftw
}:
let
version = "1.5.1";
src = fetchFromGitHub {
owner = "synfig";
repo = "synfig";
rev = "v${version}";
hash = "sha256-9vBYESaSgW/1FWH2uFBvPiYvxLlX0LLNnd4S7ACJcwI=";
};
ETL = stdenv.mkDerivation {
pname = "ETL";
inherit version src;
sourceRoot = "source/ETL";
nativeBuildInputs = [
pkg-config
autoreconfHook
];
buildInputs = [
glibmm
];
};
synfig = stdenv.mkDerivation {
pname = "synfig";
inherit version src;
sourceRoot = "source/synfig-core";
configureFlags = [
"--with-boost=${boost.dev}"
"--with-boost-libdir=${boost.out}/lib"
];
nativeBuildInputs = [
pkg-config
autoreconfHook
gettext
intltool
];
buildInputs = [
ETL
boost
cairo
glibmm
mlt
libsigcxx
libxmlxx
pango
imagemagick
harfbuzz
freetype
fribidi
openexr
fftw
];
};
in
stdenv.mkDerivation {
pname = "synfigstudio";
inherit version src;
sourceRoot = "source/synfig-studio";
postPatch = ''
patchShebangs images/splash_screen_development.sh
'';
preConfigure = ''
./bootstrap.sh
'';
nativeBuildInputs = [
pkg-config
autoreconfHook
gettext
wrapGAppsHook
];
buildInputs = [
ETL
synfig
boost
cairo
glibmm
gtk3
gtkmm3
imagemagick
intltool
libjack2
libsigcxx
libxmlxx
mlt
gnome.adwaita-icon-theme
openexr
fftw
];
enableParallelBuilding = true;
passthru = {
# Expose libraries and cli tools
inherit ETL synfig;
};
meta = with lib; {
description = "A 2D animation program";
homepage = "http://www.synfig.org";
license = licenses.gpl2Plus;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}