Merge pull request #157658 from xrelkd/update/convco

convco: 0.3.3 -> 0.3.8

authored by legendofmiracles and committed by GitHub 6d805f9c a90cfeba

+15 -6
+15 -6
pkgs/development/tools/convco/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitHub, stdenv, openssl, perl, pkg-config, libiconv, Security }: 1 + { stdenv 2 + , lib 3 + , rustPlatform 4 + , fetchFromGitHub 5 + , cmake 6 + , libiconv 7 + , openssl 8 + , pkg-config 9 + , Security 10 + }: 2 11 3 12 rustPlatform.buildRustPackage rec { 4 13 pname = "convco"; 5 - version = "0.3.3"; 14 + version = "0.3.8"; 6 15 7 16 src = fetchFromGitHub { 8 17 owner = "convco"; 9 18 repo = pname; 10 19 rev = "v${version}"; 11 - sha256 = "sha256-eWe7oTWl7QfIqq3GfMILi5S8zUi03ER1Mzfr8hqUvgw="; 20 + sha256 = "sha256-sNVl+bbCj3vPYz4wKOaAHeaPCCubG4XvXZ+AZijhFJE="; 12 21 }; 13 22 14 - cargoSha256 = "sha256-RuClZ+ChP7d40e9nr1Lg8R0F7rbFbBse79V9Y1AQn3o="; 23 + cargoSha256 = "sha256-FHiX9XpNjBFfs9fwi3Wzq7bAwRi7e/sqtji5WWPA5Qo="; 15 24 16 - nativeBuildInputs = [ openssl perl pkg-config ]; 25 + nativeBuildInputs = [ cmake pkg-config ]; 17 26 18 - buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ]; 27 + buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ libiconv Security ]; 19 28 20 29 meta = with lib; { 21 30 description = "A Conventional commit cli";