about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2020-02-18 07:49:03 +0000
committerOrivej Desh <orivej@gmx.fr>2020-02-18 07:51:50 +0000
commit43ee8097d927cc72bc01a9001547d517975177c9 (patch)
treeda581df73ec2f9a9226d9a520e8389a80f9fbc07 /pkgs/applications/editors
parent3ad2c20fe69048e68b49b61717cf911380262320 (diff)
downloadnixlib-43ee8097d927cc72bc01a9001547d517975177c9.tar
nixlib-43ee8097d927cc72bc01a9001547d517975177c9.tar.gz
nixlib-43ee8097d927cc72bc01a9001547d517975177c9.tar.bz2
nixlib-43ee8097d927cc72bc01a9001547d517975177c9.tar.lz
nixlib-43ee8097d927cc72bc01a9001547d517975177c9.tar.xz
nixlib-43ee8097d927cc72bc01a9001547d517975177c9.tar.zst
nixlib-43ee8097d927cc72bc01a9001547d517975177c9.zip
aseprite-unfree: 1.2.11 -> 1.2.16.3
Restore the comment explaining the split between free and unfree versions
deleted in caa4e6dcb24fe5f0d9bc334049f90bbece8fa461.
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/aseprite/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/applications/editors/aseprite/default.nix b/pkgs/applications/editors/aseprite/default.nix
index fb744ef59550..6e6d7db81770 100644
--- a/pkgs/applications/editors/aseprite/default.nix
+++ b/pkgs/applications/editors/aseprite/default.nix
@@ -6,12 +6,16 @@
 , cmark
 }:
 
+# Unfree version is not redistributable:
+# https://dev.aseprite.org/2016/09/01/new-source-code-license/
+# Consider supporting the developer: https://aseprite.org/#buy
+
 let
   skia = callPackage ./skia.nix {};
 in
 stdenv.mkDerivation rec {
   pname = "aseprite";
-  version = if unfree then "1.2.11" else "1.1.7";
+  version = if unfree then "1.2.16.3" else "1.1.7";
 
   src = fetchFromGitHub {
     owner = "aseprite";
@@ -19,7 +23,7 @@ stdenv.mkDerivation rec {
     rev = "v${version}";
     fetchSubmodules = true;
     sha256 = if unfree
-      then "1illr51jpg5g6nx29rav9dllyy5lzyyn7lj2fhrnpz1ysqgaq5p8"
+      then "16yn7y9xdc5jd50cq7bmsm320gv23pp71lr8hg2nmynzc8ibyda8"
       else "0gd49lns2bpzbkwax5jf9x1xmg1j8ij997kcxr2596cwiswnw4di";
   };