cpeditor 6.11.1 -> 7.0.1 https://repology.org/project/cpeditor/versions attrpath: cpeditor Checking auto update branch... No auto update branch exists Old version 6.11.1" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , pkg-config , qtbase , qttools , wrapQtAppsHook , cmake , ninja , python3 , runtimeShell }: stdenv.mkDerivation rec { pname = "cpeditor"; version = "6.11.2"; src = fetchFromGitHub { owner = "cpeditor"; repo = "cpeditor"; rev = version; sha256 = "sha256-zotbXzRjIwZdYluJiz6GWUIOXl/wz1TWt+dcTwMhURo="; fetchSubmodules = true; }; nativeBuildInputs = [ cmake ninja pkg-config wrapQtAppsHook python3 ]; buildInputs = [ qtbase qttools ]; postPatch = '' substituteInPlace src/Core/Runner.cpp --replace "/bin/bash" "${runtimeShell}" ''; env.NIX_CFLAGS_COMPILE = "-std=c++14"; meta = with lib; { description = "An IDE specially designed for competitive programming"; homepage = "https://cpeditor.org"; license = licenses.gpl3Plus; platforms = platforms.linux; maintainers = with maintainers; [ rewine ]; mainProgram = "cpeditor"; }; }