Merge pull request #254045 from figsoda/make

cargo-make: 0.36.13 -> 0.37.0
This commit is contained in:
Nick Cao 2023-09-08 12:54:09 -04:00 committed by GitHub
commit e16c153481
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
{ lib
, rustPlatform
, fetchCrate
, fetchFromGitHub
, pkg-config
, bzip2
, openssl
@ -10,14 +10,16 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-make";
version = "0.36.13";
version = "0.37.0";
src = fetchCrate {
inherit pname version;
hash = "sha256-9EnVO2CJY5y01mxSWphbuTVnckgUr6L8GrFy1nQcqT8=";
src = fetchFromGitHub {
owner = "sagiegurari";
repo = "cargo-make";
rev = version;
hash = "sha256-gc/0mlhQdE9tnCpDQ2vSWX4WcqnPxRjmL6YPtYGEn5E=";
};
cargoHash = "sha256-K6D5e9inuB1y3VcEW73ikrkTcewnZyW7kdHSDkWxC3w=";
cargoHash = "sha256-ut9s+kMATtmOfyIp+TwmdQtlObiZexWbh1p1tcCpYGo=";
nativeBuildInputs = [ pkg-config ];
@ -40,5 +42,6 @@ rustPlatform.buildRustPackage rec {
changelog = "https://github.com/sagiegurari/cargo-make/blob/${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ figsoda xrelkd ];
mainProgram = "cargo-make";
};
}