about summary refs log tree commit diff
path: root/pkgs/applications/graphics/azpainter
diff options
context:
space:
mode:
authorNikolay Korotkiy <sikmir@gmail.com>2020-04-26 15:11:09 +0300
committerGitHub <noreply@github.com>2020-04-26 12:11:09 +0000
commit73f3469c765b24ec0ab5b2a2108d028806f32069 (patch)
treefea78038f88c887fc5afe694236a4f68ebc98b65 /pkgs/applications/graphics/azpainter
parentf56459f7ec83c8afb7c355200c502aa8b0c8affe (diff)
azpainter: 2.1.5 -> 2.1.6 (#86028)
Diffstat (limited to 'pkgs/applications/graphics/azpainter')
-rw-r--r--pkgs/applications/graphics/azpainter/default.nix15
1 files changed, 5 insertions, 10 deletions
diff --git a/pkgs/applications/graphics/azpainter/default.nix b/pkgs/applications/graphics/azpainter/default.nix
index 2f636764e1fc8..67f1f47dccd01 100644
--- a/pkgs/applications/graphics/azpainter/default.nix
+++ b/pkgs/applications/graphics/azpainter/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, autoreconfHook
+{ stdenv, fetchFromGitHub
 , libX11, libXext, libXi
 , freetype, fontconfig
 , libpng, libjpeg
@@ -7,17 +7,15 @@
 
 stdenv.mkDerivation rec {
   pname = "azpainter";
-  version = "2.1.5";
+  version = "2.1.6";
 
   src = fetchFromGitHub {
     owner = "Symbian9";
     repo = pname;
-    rev = "refs/tags/v${version}";
-    sha256 = "0x5jmsprjissqcvwq75pqq9wgv4k9b7cy507hai8xk6xs3vxwgba";
+    rev = "v${version}";
+    sha256 = "sha256-al87Rnf4HkKdmtN3EqxC0zEHgVWwnVi7WttqT/Qxr0Q=";
   };
 
-  nativeBuildInputs = [ autoreconfHook ];
-
   buildInputs = [
     libX11 libXext libXi
     freetype fontconfig
@@ -25,14 +23,11 @@ stdenv.mkDerivation rec {
     zlib
   ];
 
-  configureFlags = [
-    "--with-freetype-dir=${stdenv.lib.getDev freetype}/include/freetype2"
-  ];
-
   meta = with stdenv.lib; {
     description = "Full color painting software for illustration drawing";
     homepage = "https://osdn.net/projects/azpainter";
     license = licenses.gpl3Plus;
     maintainers = with maintainers; [ dtzWill ];
+    platforms = with platforms; linux ++ darwin;
   };
 }