27 lines
750 B
Nix
27 lines
750 B
Nix
|
{ lib, rustPlatform, fetchFromGitHub, stdenv, openssl, perl, pkg-config, libiconv, Security }:
|
||
|
|
||
|
rustPlatform.buildRustPackage rec {
|
||
|
pname = "convco";
|
||
|
version = "0.3.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "convco";
|
||
|
repo = pname;
|
||
|
rev = "v${version}";
|
||
|
sha256 = "0fqq6irbq1aikhhw08gc9kp0vbk2aminfbvwdlm58cvywyq91bn4";
|
||
|
};
|
||
|
|
||
|
cargoSha256 = "073sfv42fbl8rjm3dih1ghs9vq75mjshp66zdzdan2dmmrnw5m9z";
|
||
|
|
||
|
nativeBuildInputs = [ openssl perl pkg-config ];
|
||
|
|
||
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "A Conventional commit cli";
|
||
|
homepage = "https://github.com/convco/convco";
|
||
|
license = with licenses; [ mit ];
|
||
|
maintainers = with maintainers; [ hoverbear ];
|
||
|
};
|
||
|
}
|