linuxPackages_latest.broadcom_sta: add patch to compile on Kernel 6.12 (#359484)
[NixPkgs.git] / pkgs / by-name / lo / loco-cli / package.nix
blob453877f87782e7794990085f0ffa72fce4ec329e
2   lib,
3   rustPlatform,
4   fetchCrate,
5 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "loco-cli";
8   version = "0.2.9";
10   src = fetchCrate {
11     inherit pname version;
12     hash = "sha256-AhL+k5XEf8m1pyOECTlPwALUG/ELJeACfV2kulxlzaA=";
13   };
15   cargoHash = "sha256-BtunTti1cPbG1Qiv39tLdbXHM413UzsCckyqL5CJEUA=";
17   #Skip trycmd integration tests
18   checkFlags = [ "--skip=cli_tests" ];
20   meta = {
21     description = "Loco CLI is a powerful command-line tool designed to streamline the process of generating Loco websites";
22     homepage = "https://loco.rs";
23     changelog = "https://github.com/loco-rs/loco/blob/master/CHANGELOG.md";
24     license = lib.licenses.asl20;
25     maintainers = with lib.maintainers; [ sebrut ];
26     mainProgram = "loco";
27   };