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