mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
29 lines
750 B
Nix
29 lines
750 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchCrate,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "loco-cli";
|
|
version = "0.2.9";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-AhL+k5XEf8m1pyOECTlPwALUG/ELJeACfV2kulxlzaA=";
|
|
};
|
|
|
|
cargoHash = "sha256-BtunTti1cPbG1Qiv39tLdbXHM413UzsCckyqL5CJEUA=";
|
|
|
|
#Skip trycmd integration tests
|
|
checkFlags = [ "--skip=cli_tests" ];
|
|
|
|
meta = {
|
|
description = "Loco CLI is a powerful command-line tool designed to streamline the process of generating Loco websites";
|
|
homepage = "https://loco.rs";
|
|
changelog = "https://github.com/loco-rs/loco/blob/master/CHANGELOG.md";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ sebrut ];
|
|
mainProgram = "loco";
|
|
};
|
|
}
|