2022-12-17T12:23:01 impy 0.1 -> 0.2 https://github.com/bcampbell/impy/releases 2022-12-17T12:23:03 attrpath: impy 2022-12-17T12:23:03 Checking auto update branch... 2022-12-17T12:23:03 No auto update branch exists 2022-12-17T12:23:04 Old version 0.1" not present in master derivation file with contents: { lib, stdenv , fetchFromGitHub , meson , ninja , pkg-config , libpng , zlib , giflib , libjpeg }: stdenv.mkDerivation rec { pname = "impy"; version = "0.2"; src = fetchFromGitHub { owner = "bcampbell"; repo = "impy"; rev = "v${version}"; sha256 = "sha256-0bHm3jawYgcIeF2COALWlypX7kvPw1hifB/W+TKcC4M="; }; nativeBuildInputs = [ meson ninja pkg-config ]; buildInputs = [ libpng zlib giflib libjpeg ]; meta = with lib; { description = "A simple library for loading/saving images and animations, written in C"; homepage = "https://github.com/bcampbell/impy"; license = licenses.gpl3; maintainers = with maintainers; [ fgaz ]; platforms = platforms.all; }; }