summary refs log tree commit diff
path: root/pkgs/tools/system/btop
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2021-10-19 16:09:17 -0400
committerfigsoda <figsoda@pm.me>2021-10-19 16:11:31 -0400
commit6cddd6c6bf87e0849751e4e10c9579c95128b5e1 (patch)
tree8f236bfca1506d79ac8df51dd2f5d19c4fc5ab21 /pkgs/tools/system/btop
parent0bc8edad70853ca97306019651cfd7b237db62bf (diff)
downloadnixpkgs-6cddd6c6bf87e0849751e4e10c9579c95128b5e1.tar
nixpkgs-6cddd6c6bf87e0849751e4e10c9579c95128b5e1.tar.gz
nixpkgs-6cddd6c6bf87e0849751e4e10c9579c95128b5e1.tar.bz2
nixpkgs-6cddd6c6bf87e0849751e4e10c9579c95128b5e1.tar.lz
nixpkgs-6cddd6c6bf87e0849751e4e10c9579c95128b5e1.tar.xz
nixpkgs-6cddd6c6bf87e0849751e4e10c9579c95128b5e1.tar.zst
nixpkgs-6cddd6c6bf87e0849751e4e10c9579c95128b5e1.zip
btop: 1.0.16 -> 1.0.18
Diffstat (limited to 'pkgs/tools/system/btop')
-rw-r--r--pkgs/tools/system/btop/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/system/btop/default.nix b/pkgs/tools/system/btop/default.nix
index 99d1d0bfa97..b55af632697 100644
--- a/pkgs/tools/system/btop/default.nix
+++ b/pkgs/tools/system/btop/default.nix
@@ -1,17 +1,17 @@
 { lib
-, fetchFromGitHub
 , stdenv
+, fetchFromGitHub
 }:
 
 stdenv.mkDerivation rec {
   pname = "btop";
-  version = "1.0.16";
+  version = "1.0.18";
 
   src = fetchFromGitHub {
     owner = "aristocratos";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-navmEd77+LOvCpjPe6dReOYGO1wGRO3OGIv8mC05Kec=";
+    sha256 = "sha256-TUrCSpwbUP28COHAAFIdR5Kw18I35nBkiKU62IHCN4o=";
   };
 
   installFlags = [ "PREFIX=$(out)" ];
@@ -19,6 +19,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "A monitor of resources";
     homepage = "https://github.com/aristocratos/btop";
+    changelog = "https://github.com/aristocratos/btop/blob/v${version}/CHANGELOG.md";
     license = licenses.asl20;
     platforms = platforms.linux;
     maintainers = with maintainers; [ rmcgibbo ];