Merge pull request #154110 from Eliot00/commit-formatter-init

commit-formatter: init at 0.2.1
This commit is contained in:
Bernardo Meurer 2022-01-09 18:09:32 +00:00 committed by GitHub
commit bd2e78c7e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "commit-formatter";
version = "0.2.1";
src = fetchFromGitHub {
owner = "Eliot00";
repo = pname;
rev = "v${version}";
sha256 = "EYzhb9jJ4MzHxIbaTb1MxeXUgoxTwcnq5JdxAv2uNcA=";
};
cargoSha256 = "AeHQCoP1HOftlOt/Yala3AXocMlwwIXIO2i1AsFSvGQ=";
meta = with lib; {
description = "A CLI tool to help you write git commit";
homepage = "https://github.com/Eliot00/commit-formatter";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ elliot ];
};
}

View File

@ -299,6 +299,8 @@ with pkgs;
commitlint = nodePackages."@commitlint/cli"; commitlint = nodePackages."@commitlint/cli";
commit-formatter = callPackage ../applications/version-management/commit-formatter { };
containerpilot = callPackage ../applications/networking/cluster/containerpilot { }; containerpilot = callPackage ../applications/networking/cluster/containerpilot { };
coordgenlibs = callPackage ../development/libraries/coordgenlibs { }; coordgenlibs = callPackage ../development/libraries/coordgenlibs { };