parca-agent: 0.39.1 -> 0.39.2 (#427403)

authored by Pol Dellaiera and committed by GitHub b555fc31 666cb224

+9 -9
+9 -9
pkgs/by-name/pa/parca-agent/package.nix
··· 6 nix-update-script, 7 }: 8 9 - buildGoModule rec { 10 pname = "parca-agent"; 11 - version = "0.39.1"; 12 13 src = fetchFromGitHub { 14 owner = "parca-dev"; 15 repo = "parca-agent"; 16 - tag = "v${version}"; 17 - hash = "sha256-Ss6ZWoEUSNM5m3BUwLcIuhFbfMHHDdfSjxvnGzNPYM4="; 18 fetchSubmodules = true; 19 }; 20 21 proxyVendor = true; 22 - vendorHash = "sha256-+yCa5t6bBKOnUjoAQ1QqbK9xLwhNj5vyFeJD71AsNcI="; 23 24 buildInputs = [ 25 stdenv.cc.libc.static 26 ]; 27 28 ldflags = [ 29 - "-X=main.version=${version}" 30 - "-X=main.commit=${src.rev}" 31 "-extldflags=-static" 32 ]; 33 ··· 41 meta = { 42 description = "eBPF based, always-on profiling agent"; 43 homepage = "https://github.com/parca-dev/parca-agent"; 44 - changelog = "https://github.com/parca-dev/parca-agent/releases/tag/v${version}"; 45 license = lib.licenses.asl20; 46 maintainers = with lib.maintainers; [ jnsgruk ]; 47 platforms = lib.platforms.linux; 48 mainProgram = "parca-agent"; 49 }; 50 - }
··· 6 nix-update-script, 7 }: 8 9 + buildGoModule (finalAttrs: { 10 pname = "parca-agent"; 11 + version = "0.39.2"; 12 13 src = fetchFromGitHub { 14 owner = "parca-dev"; 15 repo = "parca-agent"; 16 + tag = "v${finalAttrs.version}"; 17 + hash = "sha256-gg1xlvvIImqMxAGORdTEK7TQSTXrcJZLuinGoGmkS6E="; 18 fetchSubmodules = true; 19 }; 20 21 proxyVendor = true; 22 + vendorHash = "sha256-h1VyXBsUTOToPnsQq1Z3YA5EDJwz+xdap1i6ntRjccM="; 23 24 buildInputs = [ 25 stdenv.cc.libc.static 26 ]; 27 28 ldflags = [ 29 + "-X=main.version=${finalAttrs.version}" 30 + "-X=main.commit=${finalAttrs.src.rev}" 31 "-extldflags=-static" 32 ]; 33 ··· 41 meta = { 42 description = "eBPF based, always-on profiling agent"; 43 homepage = "https://github.com/parca-dev/parca-agent"; 44 + changelog = "https://github.com/parca-dev/parca-agent/releases/tag/v${finalAttrs.version}"; 45 license = lib.licenses.asl20; 46 maintainers = with lib.maintainers; [ jnsgruk ]; 47 platforms = lib.platforms.linux; 48 mainProgram = "parca-agent"; 49 }; 50 + })