Files
nixpkgs/pkgs/by-name/sy/synfigstudio/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

156 lines
2.7 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
pkg-config,
autoreconfHook,
wrapGAppsHook3,
boost,
cairo,
gettext,
glibmm,
gtk3,
gtkmm3,
libjack2,
libsigcxx,
libxmlxx,
mlt,
pango,
imagemagick,
intltool,
adwaita-icon-theme,
harfbuzz,
freetype,
fribidi,
openexr,
fftw,
}:
let
version = "1.5.3";
src = fetchFromGitHub {
owner = "synfig";
repo = "synfig";
rev = "v${version}";
hash = "sha256-D+FUEyzJ74l0USq3V9HIRAfgyJfRP372aEKDqF8+hsQ=";
};
ETL = stdenv.mkDerivation {
pname = "ETL";
inherit version src;
sourceRoot = "${src.name}/ETL";
nativeBuildInputs = [
pkg-config
autoreconfHook
];
buildInputs = [
glibmm
];
};
synfig = stdenv.mkDerivation {
pname = "synfig";
inherit version src;
sourceRoot = "${src.name}/synfig-core";
configureFlags = [
"--with-boost=${boost.dev}"
"--with-boost-libdir=${boost.out}/lib"
]
++ lib.optionals stdenv.cc.isClang [
# Newer versions of clang default to C++17, but synfig and some of its dependencies use deprecated APIs that
# are removed in C++17. Setting the language version to C++14 allows it to build.
"CXXFLAGS=-std=c++14"
];
enableParallelBuilding = true;
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 = "${src.name}/synfig-studio";
postPatch = ''
patchShebangs images/splash_screen_development.sh
'';
preConfigure = ''
./bootstrap.sh
'';
configureFlags = lib.optionals stdenv.cc.isClang [
# Newer versions of clang default to C++17, but synfig and some of its dependencies use deprecated APIs that
# are removed in C++17. Setting the language version to C++14 allows it to build.
"CXXFLAGS=-std=c++14"
];
nativeBuildInputs = [
pkg-config
autoreconfHook
gettext
intltool
wrapGAppsHook3
];
buildInputs = [
ETL
synfig
boost
cairo
glibmm
gtk3
gtkmm3
imagemagick
libjack2
libsigcxx
libxmlxx
mlt
adwaita-icon-theme
openexr
fftw
];
enableParallelBuilding = true;
passthru = {
# Expose libraries and cli tools
inherit ETL synfig;
};
meta = with lib; {
description = "2D animation program";
homepage = "https://www.synfig.org";
license = licenses.gpl3Plus;
maintainers = [ ];
platforms = platforms.linux ++ platforms.darwin;
};
}