3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/graphics/evilpixie/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.1 KiB
Nix
Raw Normal View History

2022-12-12 21:49:13 +00:00
{ lib
, stdenv
2020-06-15 17:43:39 +01:00
, fetchFromGitHub
2022-12-12 21:49:13 +00:00
, meson
, ninja
, pkg-config
, wrapQtAppsHook
2020-06-15 17:43:39 +01:00
, qtbase
, libpng
, giflib
2022-12-12 21:49:13 +00:00
, libjpeg
2020-06-15 17:43:39 +01:00
, impy
}:
2022-12-12 21:49:13 +00:00
stdenv.mkDerivation rec {
2020-06-15 17:43:39 +01:00
pname = "evilpixie";
2022-12-17 08:44:31 +00:00
version = "0.3.1";
2020-06-15 17:43:39 +01:00
src = fetchFromGitHub {
owner = "bcampbell";
repo = "evilpixie";
rev = "v${version}";
2022-12-17 08:44:31 +00:00
sha256 = "sha256-+DdAN+xDOYxLgLHUlr75piTEPrWpuOyXvxckhBEl7yU=";
2020-06-15 17:43:39 +01:00
};
nativeBuildInputs = [
2022-12-12 21:49:13 +00:00
meson
ninja
pkg-config
wrapQtAppsHook
2020-06-15 17:43:39 +01:00
];
buildInputs = [
qtbase
libpng
giflib
2022-12-12 21:49:13 +00:00
libjpeg
2020-06-15 17:43:39 +01:00
impy
];
meta = with lib; {
description = "Pixel-oriented paint program, modelled on Deluxe Paint";
homepage = "https://github.com/bcampbell/evilpixie"; # http://evilpixie.scumways.com/ is gone
2020-06-15 17:43:39 +01:00
downloadPage = "https://github.com/bcampbell/evilpixie/releases";
license = licenses.gpl3Only;
2020-06-15 17:43:39 +01:00
maintainers = with maintainers; [ fgaz ];
platforms = platforms.all;
2022-12-12 21:49:13 +00:00
# Undefined symbols for architecture x86_64:
# "_bundle_path", referenced from: App::SetupPaths() in src_app.cpp.o
broken = stdenv.isDarwin ||
# https://github.com/bcampbell/evilpixie/issues/28
stdenv.isAarch64;
2020-06-15 17:43:39 +01:00
};
}