summary refs log tree commit diff
path: root/pkgs/top-level/lua-packages.nix
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2023-01-04 12:31:35 +0900
committerNguyễn Gia Phong <mcsinyx@disroot.org>2023-01-09 15:21:28 +0900
commite0d77b1e3c2a8a27de60f0aa6061c99a4ceb6dd0 (patch)
tree1f8bbc384c421e0a0cb9cdf2b8a495acb6559208 /pkgs/top-level/lua-packages.nix
parent298add347c2bbce14020fcb54051f517c391196b (diff)
downloadnixpkgs-e0d77b1e3c2a8a27de60f0aa6061c99a4ceb6dd0.tar
nixpkgs-e0d77b1e3c2a8a27de60f0aa6061c99a4ceb6dd0.tar.gz
nixpkgs-e0d77b1e3c2a8a27de60f0aa6061c99a4ceb6dd0.tar.bz2
nixpkgs-e0d77b1e3c2a8a27de60f0aa6061c99a4ceb6dd0.tar.lz
nixpkgs-e0d77b1e3c2a8a27de60f0aa6061c99a4ceb6dd0.tar.xz
nixpkgs-e0d77b1e3c2a8a27de60f0aa6061c99a4ceb6dd0.tar.zst
nixpkgs-e0d77b1e3c2a8a27de60f0aa6061c99a4ceb6dd0.zip
luaPackages.vicious: 2.5.1 -> 2.6.0
Diffstat (limited to 'pkgs/top-level/lua-packages.nix')
-rw-r--r--pkgs/top-level/lua-packages.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/top-level/lua-packages.nix b/pkgs/top-level/lua-packages.nix
index 5ea0e298f0a..ecb022e715d 100644
--- a/pkgs/top-level/lua-packages.nix
+++ b/pkgs/top-level/lua-packages.nix
@@ -140,13 +140,13 @@ rec {
 
   vicious = callPackage ({ fetchFromGitHub }: stdenv.mkDerivation rec {
     pname = "vicious";
-    version = "2.5.1";
+    version = "2.6.0";
 
     src = fetchFromGitHub {
       owner = "vicious-widgets";
       repo = "vicious";
       rev = "v${version}";
-      sha256 = "sha256-geu/g/dFAVxtY1BuJYpZoVtFS/oL66NFnqiLAnJELtI=";
+      sha256 = "sha256-VlJ2hNou2+t7eSyHmFkC2xJ92OH/uJ/ewYHkFLQjUPQ=";
     };
 
     buildInputs = [ lua ];
@@ -160,6 +160,7 @@ rec {
     meta = with lib; {
       description = "A modular widget library for the awesome window manager";
       homepage = "https://vicious.rtfd.io";
+      changelog = "https://vicious.rtfd.io/en/v${version}/changelog.html";
       license = licenses.gpl2Plus;
       maintainers = with maintainers; [ makefu mic92 McSinyx ];
       platforms = platforms.linux;