azpainter: 2.1.5 -> 2.1.6 (#86028)
This commit is contained in:
parent
f56459f7ec
commit
73f3469c76
1 changed files with 5 additions and 10 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, autoreconfHook
|
{ stdenv, fetchFromGitHub
|
||||||
, libX11, libXext, libXi
|
, libX11, libXext, libXi
|
||||||
, freetype, fontconfig
|
, freetype, fontconfig
|
||||||
, libpng, libjpeg
|
, libpng, libjpeg
|
||||||
|
@ -7,17 +7,15 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "azpainter";
|
pname = "azpainter";
|
||||||
version = "2.1.5";
|
version = "2.1.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Symbian9";
|
owner = "Symbian9";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "refs/tags/v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0x5jmsprjissqcvwq75pqq9wgv4k9b7cy507hai8xk6xs3vxwgba";
|
sha256 = "sha256-al87Rnf4HkKdmtN3EqxC0zEHgVWwnVi7WttqT/Qxr0Q=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libX11 libXext libXi
|
libX11 libXext libXi
|
||||||
freetype fontconfig
|
freetype fontconfig
|
||||||
|
@ -25,14 +23,11 @@ stdenv.mkDerivation rec {
|
||||||
zlib
|
zlib
|
||||||
];
|
];
|
||||||
|
|
||||||
configureFlags = [
|
|
||||||
"--with-freetype-dir=${stdenv.lib.getDev freetype}/include/freetype2"
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Full color painting software for illustration drawing";
|
description = "Full color painting software for illustration drawing";
|
||||||
homepage = "https://osdn.net/projects/azpainter";
|
homepage = "https://osdn.net/projects/azpainter";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ dtzWill ];
|
maintainers = with maintainers; [ dtzWill ];
|
||||||
|
platforms = with platforms; linux ++ darwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue