diff options
Diffstat (limited to 'pkgs/applications/graphics/azpainter/default.nix')
-rw-r--r-- | pkgs/applications/graphics/azpainter/default.nix | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/pkgs/applications/graphics/azpainter/default.nix b/pkgs/applications/graphics/azpainter/default.nix deleted file mode 100644 index 111e37711ef3..000000000000 --- a/pkgs/applications/graphics/azpainter/default.nix +++ /dev/null @@ -1,49 +0,0 @@ -{ lib, stdenv, fetchFromGitLab -, desktop-file-utils, 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.8"; - - src = fetchFromGitLab { - owner = "azelpg"; - repo = pname; - rev = "v${version}"; - hash = "sha256-NiQYX/Dcl/t30Jx08DKr6EP5ODS00pyEGKh/qiNT5t4="; - }; - - nativeBuildInputs = [ - desktop-file-utils # for update-desktop-database - shared-mime-info # for update-mime-info - ninja - pkg-config - ]; - - buildInputs = [ - libX11 libXcursor libXext libXi - freetype fontconfig - libjpeg libpng libtiff libwebp - zlib - ] ++ lib.optionals stdenv.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"; - }; -} |