git-ant-tools.git-extras: 3.0.0 -> 4.1.0

+4 -3
+1
lib/maintainers.nix
··· 78 78 chris-martin = "Chris Martin <ch.martin@gmail.com>"; 79 79 chrisjefferson = "Christopher Jefferson <chris@bubblescope.net>"; 80 80 christopherpoole = "Christopher Mark Poole <mail@christopherpoole.net>"; 81 + cko = "Christine Koppelt <christine.koppelt@gmail.com>"; 81 82 cleverca22 = "Michael Bishop <cleverca22@gmail.com>"; 82 83 cmcdragonkai = "Roger Qiu <roger.qiu@matrix.ai>"; 83 84 coconnor = "Corey O'Connor <coreyoconnor@gmail.com>";
+3 -3
pkgs/applications/version-management/git-and-tools/git-extras/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "git-extras-${version}"; 5 - version = "3.0.0"; 5 + version = "4.1.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/tj/git-extras/archive/${version}.tar.gz"; 9 - sha256 = "01x8n9i5sgl1s53sgglg9sd9lyp35dhvdhwlx03yimi4i11441s9"; 9 + sha256 = "d4c028e2fe78abde8f3e640b70f431318fb28d82894dde22772efe8ba3563f85"; 10 10 }; 11 11 12 12 phases = [ "unpackPhase" "installPhase" ]; ··· 18 18 description = "GIT utilities -- repo summary, repl, changelog population, author commit percentages and more"; 19 19 license = licenses.mit; 20 20 platforms = platforms.all; 21 - maintainers = [ maintainers.spwhitt ]; 21 + maintainers = [ maintainers.spwhitt maintainers.cko ]; 22 22 }; 23 23 }