corrosion 0.3.4 -> 0.3.5 https://github.com/corrosion-rs/corrosion/releases attrpath: corrosion Checking auto update branch... No auto update branch exists Old version 0.3.4" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake , rustPlatform , libiconv }: stdenv.mkDerivation rec { pname = "corrosion"; version = "0.3.5"; src = fetchFromGitHub { owner = "corrosion-rs"; repo = "corrosion"; rev = "v${version}"; hash = "sha256-r/jrck4RiQynH1+Hx4GyIHpw/Kkr8dHe1+vTHg+fdRs="; }; cargoRoot = "generator"; cargoDeps = rustPlatform.fetchCargoTarball { inherit src; sourceRoot = "${src.name}/${cargoRoot}"; name = "${pname}-${version}"; hash = "sha256-d4ep2v1aMQJUiMwwM0QWZo8LQosJoSeVIEx7JXkXHt8="; }; 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 ]; }; }