Merge pull request #135457 from figsoda/cargo-release

cargo-release: 0.16.3 -> 0.17.0, fix license
This commit is contained in:
Jörg Thalheim 2021-08-23 20:52:09 +01:00 committed by GitHub
commit c023f1bed5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,25 +2,26 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-release";
version = "0.16.3";
version = "0.17.0";
src = fetchFromGitHub {
owner = "sunng87";
owner = "crate-ci";
repo = "cargo-release";
rev = "v${version}";
sha256 = "sha256-VAXuxHCayjmuI26rhJroEBbnyJ4z+w7HY5TNTanYvpw=";
sha256 = "04vp2w07da9b4cfrdp8jj5fp5v7xzdx2946v7195n2krhrdhq957";
};
cargoSha256 = "sha256-cXuAPQ8xRkeixWNYGjStNipbn4xIc1NsfVqROd6RHdg=";
cargoSha256 = "0ch22aysbpp38xny3sfbzrbsflfva57dlslkdqsmf4a7bckpbkhs";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ]
++ lib.optionals stdenv.isDarwin [ libiconv Security ];
++ lib.optionals stdenv.isDarwin [ libiconv Security ];
meta = with lib; {
description = ''Cargo subcommand "release": everything about releasing a rust crate'';
homepage = "https://github.com/sunng87/cargo-release";
license = with licenses; [ mit ];
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ gerschtli ];
};
}