bottom 0.8.0 -> 0.9.0 https://repology.org/project/bottom/versions attrpath: bottom Checking auto update branch... No auto update branch exists Old version 0.8.0" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , installShellFiles , stdenv , darwin }: rustPlatform.buildRustPackage rec { pname = "bottom"; version = "0.9.0"; src = fetchFromGitHub { owner = "ClementTsang"; repo = pname; rev = version; sha256 = "sha256-/pjMxWQ66t9Jd8ziLJXDgnwfSgR1uS9U1uXVDTZze58="; }; cargoHash = "sha256-0KweijC4gA9ELmQZ7lvOx2BypMuj8KsZHxGfcRXVi4g="; nativeBuildInputs = [ installShellFiles ]; buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk_11_0.frameworks.Foundation ]; doCheck = false; postInstall = '' installManPage target/tmp/bottom/manpage/btm.1 installShellCompletion \ target/tmp/bottom/completion/btm.{bash,fish} \ --zsh target/tmp/bottom/completion/_btm ''; BTM_GENERATE = true; meta = with lib; { description = "A cross-platform graphical process/system monitor with a customizable interface"; homepage = "https://github.com/ClementTsang/bottom"; changelog = "https://github.com/ClementTsang/bottom/blob/${version}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ berbiche figsoda ]; mainProgram = "btm"; }; }