aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/version-management/commitizen/default.nix
blob: c673fd6d0c9a3b3311e32315574b206b2ddd7b7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ pkgs, nodejs, stdenv, lib, ... }:

let
  nodePackages = import ./node-composition.nix {
    inherit pkgs nodejs;
    inherit (stdenv.hostPlatform) system;
  };
in
nodePackages.commitizen.override {
  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;
  };
}