summary refs log tree commit diff
path: root/pkgs/applications/version-management/cz-cli/default.nix
blob: 769aa0abb8c86c9c9ea3966b0a32dc45ae38b19f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ pkgs, nodejs, stdenv, lib, ... }:

let
  nodePackages = import ./node-composition.nix {
    inherit pkgs nodejs;
    inherit (stdenv.hostPlatform) system;
  };
in
nodePackages.commitizen.override {
  name = "cz-cli";
  meta = with lib; {
    description = "The commitizen command line utility";
    homepage = "https://commitizen.github.io/cz-cli";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.mit;
    platforms = platforms.linux ++ platforms.darwin;
  };
}