dockle 0.4.5 -> 0.4.11 https://github.com/goodwithtech/dockle/releases attrpath: dockle Checking auto update branch... No auto update branch exists Old version 0.4.5" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, pkg-config, btrfs-progs, lvm2 }: buildGoModule rec { pname = "dockle"; version = "0.4.11"; src = fetchFromGitHub { owner = "goodwithtech"; repo = pname; rev = "v${version}"; hash = "sha256-KdHRKY7HabPN1jrEqAEF4QImLVECGbjHRA1tw51j32w="; }; vendorHash = "sha256-2YH7XO5F+nZb6Dug5F40dvrZEPvMn+XtdQ6i0gug4VY="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ btrfs-progs lvm2 ]; ldflags = [ "-s" "-w" "-X github.com/goodwithtech/dockle/pkg.version=${version}" ]; preCheck = '' # Remove tests that use networking rm pkg/scanner/scan_test.go ''; doInstallCheck = true; installCheckPhase = '' runHook preInstallCheck $out/bin/dockle --help $out/bin/dockle --version | grep "dockle version ${version}" runHook postInstallCheck ''; meta = with lib; { homepage = "https://containers.goodwith.tech"; changelog = "https://github.com/goodwithtech/dockle/releases/tag/v${version}"; description = "Container Image Linter for Security"; longDescription = '' Container Image Linter for Security. Helping build the Best-Practice Docker Image. Easy to start. ''; license = licenses.asl20; maintainers = with maintainers; [ jk ]; }; }