about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2019-01-23 09:39:10 -0500
committerGitHub <noreply@github.com>2019-01-23 09:39:10 -0500
commit15ce4e6945c4f2e5e6ca94d46ea58be4b6b7c79b (patch)
treef56e824baa96d4a60f45e2e7cfda1a7f18ea7aa2 /pkgs
parent20343f0ab476886a20e530a54bd9695efaa3c7b9 (diff)
parent8a2aef753db847ad1f696bf8af5c800f59044356 (diff)
downloadnixlib-15ce4e6945c4f2e5e6ca94d46ea58be4b6b7c79b.tar
nixlib-15ce4e6945c4f2e5e6ca94d46ea58be4b6b7c79b.tar.gz
nixlib-15ce4e6945c4f2e5e6ca94d46ea58be4b6b7c79b.tar.bz2
nixlib-15ce4e6945c4f2e5e6ca94d46ea58be4b6b7c79b.tar.lz
nixlib-15ce4e6945c4f2e5e6ca94d46ea58be4b6b7c79b.tar.xz
nixlib-15ce4e6945c4f2e5e6ca94d46ea58be4b6b7c79b.tar.zst
nixlib-15ce4e6945c4f2e5e6ca94d46ea58be4b6b7c79b.zip
Merge pull request #54493 from worldofpeace/krita/bump
krita: 4.1.5 -> 4.1.7.101
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/graphics/krita/default.nix14
1 files changed, 11 insertions, 3 deletions
diff --git a/pkgs/applications/graphics/krita/default.nix b/pkgs/applications/graphics/krita/default.nix
index ce2bdcbd298c..c9fdbd255d46 100644
--- a/pkgs/applications/graphics/krita/default.nix
+++ b/pkgs/applications/graphics/krita/default.nix
@@ -8,13 +8,21 @@
 , python3
 }:
 
+let
+
+major = "4.1";
+minor = "7";
+patch = "101";
+
+in
+
 mkDerivation rec {
   name = "krita-${version}";
-  version = "4.1.5";
+  version = "${major}.${minor}.${patch}";
 
   src = fetchurl {
-    url = "https://download.kde.org/stable/krita/${version}/${name}.tar.gz";
-    sha256 = "1by8p8ifdp03f05bhg8ygdd1j036anfpjjnzbx63l2fbmy9k6q10";
+    url = "https://download.kde.org/stable/krita/${major}.${minor}/${name}.tar.gz";
+    sha256 = "0pvghb17vj3y19wa1n1zfg3yl5206ir3y45znrgdgdw076m5pjav";
   };
 
   nativeBuildInputs = [ cmake extra-cmake-modules ];