8180085733
New features since version 3.2.0: * G'MIC Plugin * Touch Painting * Smart Patch Tool * New Brush Presets The full release notes can be found at: https://krita.org/en/release-notes-for-krita-3-2/ Version 3.2.1 contains these fixes: * Crash on startup if only OpenGL 2.1 is found: if you had to disable opengl for 3.2.0, you can try to enable it again * A crash when changing layer types in the gmic-qt plugin * A bug where gmic-qt could crash on odd-sized images * A regression where using the text tool would break the brush tool * The option to use the native platform's file dialogs was restored * A bug where selecting the line tool would disable the flow slider * Some issues with the LUT docker were fixed Upstream release notes for 3.2.1: https://krita.org/en/item/krita-3-2-1-released/ I've dropped the patch, because it was already from the upstream development version and thus is also included in this release. Built and tested using a few images and just playing around with a few new features. Signed-off-by: aszlig <aszlig@redmoonstudios.org> Cc: @abbradar, @Mic92, @kragniz
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ mkDerivation, lib, fetchurl, fetchpatch, cmake, extra-cmake-modules
|
|
, karchive, kconfig, kwidgetsaddons, kcompletion, kcoreaddons
|
|
, kguiaddons, ki18n, kitemmodels, kitemviews, kwindowsystem
|
|
, kio, kcrash
|
|
, boost, libraw, fftw, eigen, exiv2, lcms2, gsl, openexr
|
|
, openjpeg, opencolorio, vc, poppler_qt5, curl, ilmbase
|
|
, qtmultimedia, qtx11extras
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
name = "krita-${version}";
|
|
version = "3.2.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.kde.org/stable/krita/${version}/${name}.tar.gz";
|
|
sha256 = "0fafy5ggplgq2rz85sqa42vmkzs2r9dq47qfrbnn2n6pfzkcw1pg";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules ];
|
|
|
|
buildInputs = [
|
|
karchive kconfig kwidgetsaddons kcompletion kcoreaddons kguiaddons
|
|
ki18n kitemmodels kitemviews kwindowsystem kio kcrash
|
|
boost libraw fftw eigen exiv2 lcms2 gsl openexr
|
|
openjpeg opencolorio vc poppler_qt5 curl ilmbase
|
|
qtmultimedia qtx11extras
|
|
];
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-I${ilmbase.dev}/include/OpenEXR" ];
|
|
|
|
meta = with lib; {
|
|
description = "A free an open source painting application";
|
|
homepage = https://krita.org/;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
};
|
|
}
|