mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
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
|
||||
, 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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue