2022-11-09T03:01:36 linuxkit 1.0.0 -> 1.0.1 https://github.com/linuxkit/linuxkit/releases 2022-11-09T03:01:38 attrpath: linuxkit 2022-11-09T03:01:38 Checking auto update branch... 2022-11-09T03:01:38 No auto update branch exists 2022-11-09T03:01:39 Old version 1.0.0" not present in master derivation file with contents: { lib, stdenv, buildGoModule, fetchFromGitHub, git, Virtualization, testers, linuxkit }: buildGoModule rec { pname = "linuxkit"; version = "1.0.1"; src = fetchFromGitHub { owner = "linuxkit"; repo = "linuxkit"; rev = "v${version}"; sha256 = "sha256-8x9oJaYb/mN2TUaVrGOYi5/6TETD78jif0SwCSc0kyo="; }; vendorSha256 = null; modRoot = "./src/cmd/linuxkit"; buildInputs = lib.optionals stdenv.isDarwin [ Virtualization ]; ldflags = [ "-s" "-w" "-X github.com/linuxkit/linuxkit/src/cmd/linuxkit/version.Version=${version}" ]; checkInputs = [ git ]; passthru.tests.version = testers.testVersion { package = linuxkit; command = "linuxkit version"; }; meta = with lib; { description = "A toolkit for building secure, portable and lean operating systems for containers"; license = licenses.asl20; homepage = "https://github.com/linuxkit/linuxkit"; maintainers = with maintainers; [ nicknovitski ]; platforms = platforms.unix; }; }