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