Merge pull request #258777 from cafkafk/cafk-convco-unstable

convco: 0.4.2 -> 0.4.3
This commit is contained in:
Weijia Wang 2023-10-04 18:48:18 +02:00 committed by GitHub
commit f894042da5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 10 deletions

View file

@ -6,30 +6,30 @@
, libiconv
, openssl
, pkg-config
, Security
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "convco";
version = "0.4.2";
version = "0.4.3";
src = fetchFromGitHub {
owner = "convco";
repo = pname;
rev = "v${version}";
sha256 = "sha256-RNUMLc4lY18tsOr2vmpkYdQ2poVOQxsSVl5PEuhzQxw=";
hash = "sha256-qf04mtxBqZy9kpFsqz8lVtyUzNtCYE8cNiVJVQ+sCn0=";
};
cargoHash = "sha256-ChB4w9qnSzuOGTPYfpAJS2icy9wi1RjONCsfT+3vlRo=";
cargoHash = "sha256-A1z8ccdsaBC9gY4rD/0NnuQHm7x4eVlMPBvkMKGHK54=";
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ libiconv Security ];
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ libiconv darwin.apple_sdk.frameworks.Security ];
meta = with lib; {
description = "A Conventional commit cli";
homepage = "https://github.com/convco/convco";
license = with licenses; [ mit ];
maintainers = with maintainers; [ hoverbear ];
maintainers = with maintainers; [ hoverbear cafkafk ];
};
}

View file

@ -17390,10 +17390,6 @@ with pkgs;
critcmp = callPackage ../development/tools/rust/critcmp { };
convco = callPackage ../development/tools/convco {
inherit (darwin.apple_sdk.frameworks) Security;
};
devspace = callPackage ../development/tools/misc/devspace { };
djlint = callPackage ../development/tools/djlint { };