Merge pull request #246979 from tjni/gitoxide

gitoxide: 0.27.0 -> 0.28.0
This commit is contained in:
Mario Rodas 2023-08-05 09:42:45 -05:00 committed by GitHub
commit 475b642821
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,24 +13,25 @@
rustPlatform.buildRustPackage rec {
pname = "gitoxide";
version = "0.27.0";
version = "0.28.0";
src = fetchFromGitHub {
owner = "Byron";
repo = "gitoxide";
rev = "v${version}";
sha256 = "sha256-L5x27rJ9Y3K886OlTvCXV2LY+6L/f6vokCbgrWPCiHY=";
hash = "sha256-7iJx7kE606jeaokROmOSoh0egCQUgYwvg8BAA3y1BGs=";
};
cargoHash = "sha256-YEHHu9PJ5aJvWUaTXCNKEaV/Rd8lP6Wub/CFJCBykHU=";
cargoHash = "sha256-zChqIA/KuS1aBs/g1tlymGvvJeljKMMCODijPhQYy40=";
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ curl ] ++ (if stdenv.isDarwin
then [ libiconv Security SystemConfiguration ]
else [ openssl ]);
# Needed to get openssl-sys to use pkg-config.
OPENSSL_NO_VENDOR = 1;
env.OPENSSL_NO_VENDOR = 1;
meta = with lib; {
description = "A command-line application for interacting with git repositories";