aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/graphics/azpainter/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/graphics/azpainter/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/graphics/azpainter/default.nix15
1 files changed, 5 insertions, 10 deletions
diff --git a/nixpkgs/pkgs/applications/graphics/azpainter/default.nix b/nixpkgs/pkgs/applications/graphics/azpainter/default.nix
index 2f636764e1f..67f1f47dccd 100644
--- a/nixpkgs/pkgs/applications/graphics/azpainter/default.nix
+++ b/nixpkgs/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;
};
}