2022-12-17T06:24:44 evilpixie 0.2.1 -> 0.3 https://github.com/bcampbell/evilpixie/releases 2022-12-17T06:24:46 attrpath: evilpixie 2022-12-17T06:24:46 Checking auto update branch... 2022-12-17T06:24:46 No auto update branch exists 2022-12-17T06:24:47 Old version 0.2.1" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , meson , ninja , pkg-config , wrapQtAppsHook , qtbase , libpng , giflib , libjpeg , impy }: stdenv.mkDerivation rec { pname = "evilpixie"; version = "0.3"; src = fetchFromGitHub { owner = "bcampbell"; repo = "evilpixie"; rev = "v${version}"; sha256 = "sha256-t7ccaMXaCanCyn3oV8WJ11bhF7xTBkd992AheFJpSGQ="; }; nativeBuildInputs = [ meson ninja pkg-config wrapQtAppsHook ]; buildInputs = [ qtbase libpng giflib libjpeg 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 downloadPage = "https://github.com/bcampbell/evilpixie/releases"; license = licenses.gpl3Only; maintainers = with maintainers; [ fgaz ]; platforms = platforms.all; # 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; }; }