mutagen 0.16.0 -> 0.17.1 https://github.com/mutagen-io/mutagen/releases attrpath: mutagen Checking auto update branch... No auto update branch exists Old version 0.16.0" not present in master derivation file with contents: { stdenv, lib, buildGoModule, fetchFromGitHub, fetchzip }: buildGoModule rec { pname = "mutagen"; version = "0.17.0"; src = fetchFromGitHub { owner = "mutagen-io"; repo = pname; rev = "v${version}"; sha256 = "sha256-Dfs7hgyTjl3jU28YSd1XEe0wNKQxKgLLMKcrKSEvc4w="; }; vendorSha256 = "sha256-kfzT+230KY2TJVc0qKMi4TysmltZSgF/OvL5nPLPcbM="; agents = fetchzip { name = "mutagen-agents-${version}"; # The package architecture does not matter since all packages contain identical mutagen-agents.tar.gz. url = "https://github.com/mutagen-io/mutagen/releases/download/v${version}/mutagen_linux_amd64_v${version}.tar.gz"; stripRoot = false; postFetch = '' rm $out/mutagen # Keep only mutagen-agents.tar.gz. ''; sha256 = "sha256-kQdlwNsZd/YrH5XagtQRA/1WFhw4fLmqQW+kZ4ykxfc="; }; doCheck = false; subPackages = [ "cmd/mutagen" "cmd/mutagen-agent" ]; postInstall = '' install -d $out/libexec ln -s ${agents}/mutagen-agents.tar.gz $out/libexec/ ''; meta = with lib; { description = "Make remote development work with your local tools"; homepage = "https://mutagen.io/"; changelog = "https://github.com/mutagen-io/mutagen/releases/tag/v${version}"; maintainers = [ maintainers.marsam ]; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.mit; }; }