cocogitto: init as 4.0.1

main
travisdavis-ops 3 years ago committed by legendofmiracles
parent 06edb74413
commit e1b3d18cbc
No known key found for this signature in database
GPG Key ID: 19B082B3DEFE5451
  1. 42
      pkgs/development/tools/cocogitto/default.nix
  2. 4
      pkgs/top-level/all-packages.nix

@ -0,0 +1,42 @@
{ lib, rustPlatform, fetchFromGitHub, installShellFiles, stdenv, Security, makeWrapper, git }:
rustPlatform.buildRustPackage rec {
pname = "cocogitto";
version = "4.0.1";
src = fetchFromGitHub {
owner = "oknozor";
repo = pname;
rev = version;
sha256 = "sha256-uSKzHo1lEBiXsi1rOKvfD2zVlkAUVZ5k0y8iiTXYE2A=";
};
cargoSha256 = "sha256-gss3+XXyM//zER3gnN9qemIWaVDfs/f4gljmukMxoq0=";
# Test depend on git configuration that would likly exist in a normal user enviroment
# and might be failing to create the test repository it works in.
doCheck = false;
nativeBuildInputs = [ installShellFiles makeWrapper ];
buildInputs = lib.optional stdenv.isDarwin Security;
postInstall = ''
installShellCompletion --cmd cog \
--bash <($out/bin/cog generate-completions bash) \
--fish <($out/bin/cog generate-completions fish) \
--zsh <($out/bin/cog generate-completions zsh)
wrapProgram $out/bin/cog \
--prefix PATH : "${lib.makeBinPath [ git ]}"
wrapProgram $out/bin/coco \
--prefix PATH : "${lib.makeBinPath [ git ]}"
'';
meta = with lib; {
description = "A set of cli tools for the conventional commit and semver specifications";
homepage = "https://github.com/oknozor/cocogitto";
license = licenses.mit;
maintainers = with maintainers; [ travisdavis-ops ];
};
}

@ -273,6 +273,10 @@ with pkgs;
cm256cc = callPackage ../development/libraries/cm256cc { };
cocogitto = callPackage ../development/tools/cocogitto {
inherit (darwin.apple_sdk.frameworks) Security;
};
conftest = callPackage ../development/tools/conftest { };
corgi = callPackage ../development/tools/corgi { };

Loading…
Cancel
Save