summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-02-10 18:18:43 +0100
committerGitHub <noreply@github.com>2023-02-10 18:18:43 +0100
commitedf1ed600aca75db0dd540b12f9232e096dded1c (patch)
tree3e6253500ef5fcb347ef4945ecab5138f86fa758
parentMerge pull request #215662 from chuangzhu/denaro (diff)
parenthotspot: add changelog to meta (diff)
downloadnixpkgs-edf1ed600aca75db0dd540b12f9232e096dded1c.tar.gz
Merge pull request #209274 from r-ryantm/auto-update/hotspot
hotspot: 1.4.0 -> 1.4.1
-rw-r--r--pkgs/development/tools/analysis/hotspot/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/development/tools/analysis/hotspot/default.nix b/pkgs/development/tools/analysis/hotspot/default.nix
index 449d5b6b5ed3..5c0a96e5d8e0 100644
--- a/pkgs/development/tools/analysis/hotspot/default.nix
+++ b/pkgs/development/tools/analysis/hotspot/default.nix
@@ -22,13 +22,13 @@
mkDerivation rec {
pname = "hotspot";
- version = "1.4.0";
+ version = "1.4.1";
src = fetchFromGitHub {
owner = "KDAB";
repo = "hotspot";
- rev = "v${version}";
- hash = "sha256-7GuIe8F3QqosW/XaN3KC1WeWcI7woUiEc9Nw0b+fSk0=";
+ rev = "refs/tags/v${version}";
+ hash = "sha256-DW4R7+rnonmEMbCkNS7TGodw+3mEyHl6OlFK3kbG5HM=";
fetchSubmodules = true;
};
@@ -62,7 +62,7 @@ mkDerivation rec {
mkdir -p 3rdparty/{perfparser,PrefixTickLabels}/.git
'';
- meta = {
+ meta = with lib; {
description = "A GUI for Linux perf";
longDescription = ''
hotspot is a GUI replacement for `perf report`.
@@ -70,8 +70,9 @@ mkDerivation rec {
then displays the result in a graphical way.
'';
homepage = "https://github.com/KDAB/hotspot";
- license = with lib.licenses; [ gpl2Only gpl3Only ];
- platforms = lib.platforms.linux;
- maintainers = with lib.maintainers; [ nh2 ];
+ changelog = "https://github.com/KDAB/hotspot/releases/tag/v${version}";
+ license = with licenses; [ gpl2Only gpl3Only ];
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ nh2 ];
};
}