docker-slim 1.40.4 -> 1.40.6 https://github.com/slimtoolkit/slim/releases attrpath: docker-slim Checking auto update branch... No auto update branch exists Old version 1.40.4" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, makeBinaryWrapper }: buildGoModule rec { pname = "docker-slim"; version = "1.40.6"; src = fetchFromGitHub { owner = "slimtoolkit"; repo = "slim"; rev = version; hash = "sha256-0rn+tqdPVjkIPxOwL9rDnolrpcsDOwOah0Y7924mjD4="; }; vendorHash = null; subPackages = [ "cmd/slim" "cmd/slim-sensor" ]; nativeBuildInputs = [ makeBinaryWrapper ]; preBuild = '' go generate github.com/docker-slim/docker-slim/pkg/appbom ''; 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 ]; }; }