docker-slim 1.40.0 -> 1.40.1 https://github.com/slimtoolkit/slim/releases attrpath: docker-slim Checking auto update branch... No auto update branch exists Old version 1.40.0" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, makeBinaryWrapper }: buildGoModule rec { pname = "docker-slim"; version = "1.40.1"; src = fetchFromGitHub { owner = "slimtoolkit"; repo = "slim"; rev = version; hash = "sha256-ec5Qedt6NrcWZilcN9dhosAN59orgS2xxjXWO9XDxVE="; }; vendorHash = null; subPackages = [ "cmd/slim" "cmd/slim-sensor" ]; nativeBuildInputs = [ makeBinaryWrapper ]; ldflags = [ "-s" "-w" "-X github.com/docker-slim/docker-slim/pkg/version.appVersionTag=${version}" "-X github.com/docker-slim/docker-slim/pkg/version.appVersionRev=${src.rev}" ]; # docker-slim tries to create its state dir next to the binary (inside the nix # store), so we set it to use the working directory at the time of invocation postInstall = '' wrapProgram "$out/bin/slim" --add-flags '--state-path "$(pwd)"' ''; meta = with lib; { description = "Minify and secure Docker containers"; homepage = "https://slimtoolkit.org/"; changelog = "https://github.com/slimtoolkit/slim/raw/${version}/CHANGELOG.md"; license = licenses.asl20; maintainers = with maintainers; [ Br1ght0ne marsam mbrgm ]; }; }