at 22.05-pre 17 lines 471 B view raw
1{ pkgs, nodejs, stdenv, lib, ... }: 2 3let 4 nodePackages = import ./node-composition.nix { 5 inherit pkgs nodejs; 6 inherit (stdenv.hostPlatform) system; 7 }; 8in 9nodePackages.commitizen.override { 10 meta = with lib; { 11 description = "The commitizen command line utility"; 12 homepage = "https://commitizen.github.io/cz-cli"; 13 maintainers = with maintainers; [ freezeboy ]; 14 license = licenses.mit; 15 platforms = platforms.linux ++ platforms.darwin; 16 }; 17}