2022-11-16T06:10:20 jwasm 2.15 -> 2.16 https://github.com/Baron-von-Riedesel/JWasm/releases 2022-11-16T06:10:22 attrpath: jwasm 2022-11-16T06:10:22 Checking auto update branch... 2022-11-16T06:10:22 No auto update branch exists 2022-11-16T06:10:23 Old version 2.15" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub }: stdenv.mkDerivation (finalAttrs: { pname = "jwasm"; version = "2.16"; src = fetchFromGitHub { owner = "Baron-von-Riedesel"; repo = "JWasm"; rev = "v${finalAttrs.version}"; hash = "sha256-X2qqS4ev0+PeA1Gcsi8nivKAGZv7jxThxmQL/Jf5oB0="; }; outputs = [ "out" "doc" ]; dontConfigure = true; preBuild = '' cp ${if stdenv.cc.isClang then "CLUnix.mak" else "GccUnix.mak"} Makefile substituteInPlace Makefile \ --replace "/usr/local/bin" "${placeholder "out"}/bin" ''; postInstall = '' install -Dpm644 $src/Html/License.html \ $src/Html/Manual.html \ $src/Html/Readme.html \ -t $doc/share/doc/jwasm/ ''; meta = with lib; { homepage = "https://github.com/Baron-von-Riedesel/JWasm/"; description = "A MASM-compatible x86 assembler"; changelog = "https://github.com/Baron-von-Riedesel/JWasm/releases/tag/v${finalAttrs.version}"; license = licenses.gpl2Plus; maintainers = with maintainers; [ AndersonTorres ]; platforms = platforms.unix; broken = stdenv.isDarwin; }; }) # TODO: generalize for Windows builds