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

View file

@ -1,6 +1,6 @@
{ lib { lib
, rustPlatform , rustPlatform
, fetchCrate , fetchFromGitHub
, pkg-config , pkg-config
, bzip2 , bzip2
, openssl , openssl
@ -10,14 +10,16 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "cargo-make"; pname = "cargo-make";
version = "0.36.13"; version = "0.37.0";
src = fetchCrate { src = fetchFromGitHub {
inherit pname version; owner = "sagiegurari";
hash = "sha256-9EnVO2CJY5y01mxSWphbuTVnckgUr6L8GrFy1nQcqT8="; repo = "cargo-make";
rev = version;
hash = "sha256-gc/0mlhQdE9tnCpDQ2vSWX4WcqnPxRjmL6YPtYGEn5E=";
}; };
cargoHash = "sha256-K6D5e9inuB1y3VcEW73ikrkTcewnZyW7kdHSDkWxC3w="; cargoHash = "sha256-ut9s+kMATtmOfyIp+TwmdQtlObiZexWbh1p1tcCpYGo=";
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];