Merge pull request #206312 from figsoda/nix-update

nix-update: 0.10.0 -> 0.11.0, add figsoda as a maintainer

authored by figsoda and committed by GitHub 20620ad8 cd5e4374

+4 -3
+4 -3
pkgs/tools/package-management/nix-update/default.nix
··· 8 8 9 9 buildPythonApplication rec { 10 10 pname = "nix-update"; 11 - version = "0.10.0"; 11 + version = "0.11.0"; 12 12 format = "setuptools"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "Mic92"; 16 16 repo = pname; 17 17 rev = version; 18 - sha256 = "sha256-BChN92gZ1Ga7hIPWmdzkrg31S0iqWwXGkWb3mmRugY8="; 18 + sha256 = "sha256-nBLNMQKLgx5m5VyxTdSLBE9kNhUPdaRzVi5BQx83m+4="; 19 19 }; 20 20 21 21 makeWrapperArgs = [ ··· 29 29 meta = with lib; { 30 30 description = "Swiss-knife for updating nix packages"; 31 31 inherit (src.meta) homepage; 32 + changelog = "https://github.com/Mic92/nix-update/releases/tag/${version}"; 32 33 license = licenses.mit; 33 - maintainers = with maintainers; [ mic92 zowoq ]; 34 + maintainers = with maintainers; [ figsoda mic92 zowoq ]; 34 35 platforms = platforms.all; 35 36 }; 36 37 }