loco: 0.14.0 -> 0.15.0 (#395249)

This commit is contained in:
Peder Bergebakken Sundt
2025-04-19 04:01:58 +02:00
committed by GitHub

View File

@@ -2,22 +2,27 @@
lib, lib,
rustPlatform, rustPlatform,
fetchCrate, fetchCrate,
nix-update-script,
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "loco"; pname = "loco";
version = "0.14.0"; version = "0.15.0";
src = fetchCrate { src = fetchCrate {
inherit pname version; inherit pname version;
hash = "sha256-d13BuDPXZJ2cOgaNhX95Us+T4SoJZJAyCugSySHh7U8="; hash = "sha256-sTPFDdiYmw+ODAcuBh4XXpSXVZbbYxfjr+WiTGit18E=";
}; };
useFetchCargoVendor = true; useFetchCargoVendor = true;
cargoHash = "sha256-g7zfPO0/8a9PPdd8CPDWRUTWdQ29tFZ3uOSux8hcExo="; cargoHash = "sha256-EsNFdk7bLRzyfncDRxqS0CQGdtPFdRRSlpTTxbQ8csI=";
#Skip trycmd integration tests #Skip trycmd integration tests
checkFlags = [ "--skip=cli_tests" ]; checkFlags = [ "--skip=cli_tests" ];
passthru = {
updateScript = nix-update-script { };
};
meta = { meta = {
description = "Loco CLI is a powerful command-line tool designed to streamline the process of generating Loco websites"; description = "Loco CLI is a powerful command-line tool designed to streamline the process of generating Loco websites";
homepage = "https://loco.rs"; homepage = "https://loco.rs";