figsoda 2023-09-08 10:09:35 -04:00
parent 6054951ae5
commit f4e90e5181

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 ];