summary refs log tree commit diff
path: root/pkgs/applications/graphics/krita
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2017-09-16 19:27:12 +0200
committeraszlig <aszlig@redmoonstudios.org>2017-09-16 19:34:28 +0200
commit818008573373c8c0a8118b7b024346e9aa2232a0 (patch)
tree07c607d965a28815ba4540f515f3ef866eea4719 /pkgs/applications/graphics/krita
parent62b9d78b189422d970e3ee4706904664be32ff98 (diff)
downloadnixpkgs-818008573373c8c0a8118b7b024346e9aa2232a0.tar
nixpkgs-818008573373c8c0a8118b7b024346e9aa2232a0.tar.gz
nixpkgs-818008573373c8c0a8118b7b024346e9aa2232a0.tar.bz2
nixpkgs-818008573373c8c0a8118b7b024346e9aa2232a0.tar.lz
nixpkgs-818008573373c8c0a8118b7b024346e9aa2232a0.tar.xz
nixpkgs-818008573373c8c0a8118b7b024346e9aa2232a0.tar.zst
nixpkgs-818008573373c8c0a8118b7b024346e9aa2232a0.zip
krita: 3.1.4 -> 3.2.1
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
Diffstat (limited to 'pkgs/applications/graphics/krita')
-rw-r--r--pkgs/applications/graphics/krita/default.nix11
1 files changed, 2 insertions, 9 deletions
diff --git a/pkgs/applications/graphics/krita/default.nix b/pkgs/applications/graphics/krita/default.nix
index c8fb295044a..98f92413a76 100644
--- a/pkgs/applications/graphics/krita/default.nix
+++ b/pkgs/applications/graphics/krita/default.nix
@@ -9,11 +9,11 @@
 
 mkDerivation rec {
   name = "krita-${version}";
-  version = "3.1.4";
+  version = "3.2.1";
 
   src = fetchurl {
     url = "http://download.kde.org/stable/krita/${version}/${name}.tar.gz";
-    sha256 = "1al27v17s70hihk2mcmz3l2g6rl9qzpxaifapdfpkyias6q3f63l";
+    sha256 = "0fafy5ggplgq2rz85sqa42vmkzs2r9dq47qfrbnn2n6pfzkcw1pg";
   };
 
   nativeBuildInputs = [ cmake extra-cmake-modules ];
@@ -26,13 +26,6 @@ mkDerivation rec {
     qtmultimedia qtx11extras
   ];
 
-  patches = [
-    (fetchpatch {
-      url = "https://github.com/KDE/krita/commit/2f59d0d1.patch";
-      sha256 = "0sdlcjn6i3faln3c0aczw3pg4pvmccgszmy8n914mgsccrqrazlr";
-    })
-  ];
-
   NIX_CFLAGS_COMPILE = [ "-I${ilmbase.dev}/include/OpenEXR" ];
 
   meta = with lib; {