2022-12-04T05:06:51 httm 0.17.7 -> 0.17.10 https://github.com/kimono-koans/httm/releases 2022-12-04T05:06:53 attrpath: httm 2022-12-04T05:06:53 Checking auto update branch... 2022-12-04T05:06:53 No auto update branch exists 2022-12-04T05:06:54 Old version 0.17.7" not present in master derivation file with contents: { lib , fetchFromGitHub , rustPlatform , installShellFiles }: rustPlatform.buildRustPackage rec { pname = "httm"; version = "0.17.10"; src = fetchFromGitHub { owner = "kimono-koans"; repo = pname; rev = version; sha256 = "sha256-xhsZaOsEYmtx3EcKbc7cIPvrUdXl3gyl5InZ1Va0U6E="; }; cargoPatches = [ ./cargo-lock.patch ]; cargoSha256 = "sha256-H8LOpNKsc9CxURB+ZcQT6Uhv4aw2sx8sNdDGDCkz2SU="; nativeBuildInputs = [ installShellFiles ]; postInstall = '' installManPage httm.1 installShellCompletion --cmd httm \ --zsh scripts/httm-key-bindings.zsh ''; meta = with lib; { description = "Interactive, file-level Time Machine-like tool for ZFS/btrfs"; homepage = "https://github.com/kimono-koans/httm"; license = licenses.mpl20; platforms = platforms.unix; maintainers = with maintainers; [ wyndon ]; }; }