From 0ae5ebd4682f0c57f231e0a0675c1f27568f13aa Mon Sep 17 00:00:00 2001 From: NexVeridian Date: Tue, 1 Apr 2025 10:58:20 -0700 Subject: [PATCH] loco: 0.14.0 -> 0.15.0 --- pkgs/by-name/lo/loco/package.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/lo/loco/package.nix b/pkgs/by-name/lo/loco/package.nix index 26d3a3a6ff9e..158145b80a3b 100644 --- a/pkgs/by-name/lo/loco/package.nix +++ b/pkgs/by-name/lo/loco/package.nix @@ -2,22 +2,27 @@ lib, rustPlatform, fetchCrate, + nix-update-script, }: rustPlatform.buildRustPackage rec { pname = "loco"; - version = "0.14.0"; + version = "0.15.0"; src = fetchCrate { inherit pname version; - hash = "sha256-d13BuDPXZJ2cOgaNhX95Us+T4SoJZJAyCugSySHh7U8="; + hash = "sha256-sTPFDdiYmw+ODAcuBh4XXpSXVZbbYxfjr+WiTGit18E="; }; useFetchCargoVendor = true; - cargoHash = "sha256-g7zfPO0/8a9PPdd8CPDWRUTWdQ29tFZ3uOSux8hcExo="; + cargoHash = "sha256-EsNFdk7bLRzyfncDRxqS0CQGdtPFdRRSlpTTxbQ8csI="; #Skip trycmd integration tests checkFlags = [ "--skip=cli_tests" ]; + passthru = { + updateScript = nix-update-script { }; + }; + meta = { description = "Loco CLI is a powerful command-line tool designed to streamline the process of generating Loco websites"; homepage = "https://loco.rs";