Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
70 lines
1.3 KiB
Nix
70 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
desktop-file-utils,
|
|
desktopToDarwinBundle,
|
|
shared-mime-info,
|
|
ninja,
|
|
pkg-config,
|
|
libiconv,
|
|
libX11,
|
|
libXcursor,
|
|
libXext,
|
|
libXi,
|
|
freetype,
|
|
fontconfig,
|
|
libjpeg,
|
|
libpng,
|
|
libtiff,
|
|
libwebp,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "azpainter";
|
|
version = "3.0.9a";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "azelpg";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-QWXlRbCGDk1DRtePeDM3tnbtkdlhbkn/oNTqHvmtEA4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
desktop-file-utils # for update-desktop-database
|
|
shared-mime-info # for update-mime-info
|
|
ninja
|
|
pkg-config
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ desktopToDarwinBundle ];
|
|
|
|
buildInputs = [
|
|
libX11
|
|
libXcursor
|
|
libXext
|
|
libXi
|
|
freetype
|
|
fontconfig
|
|
libjpeg
|
|
libpng
|
|
libtiff
|
|
libwebp
|
|
zlib
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ];
|
|
|
|
preBuild = ''
|
|
cd build
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Full color painting software for illustration drawing";
|
|
homepage = "http://azsky2.html.xdomain.jp/soft/azpainter.html";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
platforms = with platforms; linux ++ darwin;
|
|
mainProgram = "azpainter";
|
|
};
|
|
}
|