2022-12-12T07:44:46 clhep 2.4.6.1 -> 2.4.6.2 https://repology.org/metapackage/clhep/versions 2022-12-12T07:44:48 attrpath: clhep 2022-12-12T07:44:48 Checking auto update branch... 2022-12-12T07:44:48 No auto update branch exists 2022-12-12T07:44:49 Old version 2.4.6.1" not present in master derivation file with contents: { lib , stdenv , fetchurl , cmake }: stdenv.mkDerivation rec { pname = "clhep"; version = "2.4.6.2"; src = fetchurl { url = "https://proj-clhep.web.cern.ch/proj-clhep/dist1/clhep-${version}.tgz"; hash = "sha256-re1z5JushaW06G9koO49bzz+VVGw93MceLbY+drG6Nw="; }; prePatch = '' cd CLHEP ''; postPatch = '' substituteInPlace CMakeLists.txt \ --replace "clhep_ensure_out_of_source_build()" "" ''; nativeBuildInputs = [ cmake ]; meta = with lib; { description = "Set of HEP-specific foundation and utility classes such as random generators, physics vectors, geometry and linear algebra"; homepage = "https://cern.ch/clhep"; license = with licenses; [ gpl3Only lgpl3Only ]; maintainers = with maintainers; [ veprbl ]; platforms = platforms.unix; }; }