2022-11-14T10:12:53 corrosion 0.2.1 -> 0.3.0 https://repology.org/metapackage/corrosion/versions 2022-11-14T10:12:55 attrpath: corrosion 2022-11-14T10:12:55 Checking auto update branch... 2022-11-14T10:12:55 No auto update branch exists 2022-11-14T10:12:56 Old version 0.2.1" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake , rustPlatform , libiconv }: stdenv.mkDerivation rec { pname = "corrosion"; version = "0.3.0"; src = fetchFromGitHub { owner = "corrosion-rs"; repo = "corrosion"; rev = "v${version}"; hash = "sha256-HZdKnS0M8q4C42b7J93LZBXJycxYVahy2ywT6rISOzo="; }; cargoRoot = "generator"; cargoDeps = rustPlatform.fetchCargoTarball { inherit src; sourceRoot = "${src.name}/${cargoRoot}"; name = "${pname}-${version}"; hash = "sha256-vrAK5BrMSC8FMLvtP0rxw4sHRU9ySbnrZM50oXMJV1Q="; }; buildInputs = lib.optional stdenv.isDarwin libiconv; nativeBuildInputs = [ cmake ] ++ (with rustPlatform; [ cargoSetupHook rust.cargo rust.rustc ]); meta = with lib; { description = "Tool for integrating Rust into an existing CMake project"; homepage = "https://github.com/corrosion-rs/corrosion"; changelog = "https://github.com/corrosion-rs/corrosion/blob/${src.rev}/RELEASES.md"; license = licenses.mit; maintainers = with maintainers; [ dotlambda ]; }; }