2023-07-16 13:50:29 -06:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
rustPlatform,
|
|
|
|
fetchCrate,
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "diesel-cli-ext";
|
|
|
|
version = "0.3.13";
|
|
|
|
|
|
|
|
src = fetchCrate {
|
|
|
|
pname = "diesel_cli_ext";
|
|
|
|
inherit version;
|
|
|
|
hash = "sha256-5AIzMxEcxL/vYWx3D/meA///Zo+1210HUMEE4dFBhkc=";
|
|
|
|
};
|
|
|
|
|
2025-01-23 08:45:31 +01:00
|
|
|
cargoHash = "sha256-AvoyJPh59fZPDcOtIZ4UFUgW83szBC3HOOlkxA3VFgE=";
|
2023-07-16 13:50:29 -06:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Provides different tools for projects using the diesel_cli";
|
|
|
|
homepage = "https://crates.io/crates/diesel_cli_ext";
|
|
|
|
license = with licenses; [
|
|
|
|
asl20
|
|
|
|
mit
|
|
|
|
];
|
2023-10-23 13:00:55 -06:00
|
|
|
mainProgram = "diesel_ext";
|
2023-07-16 13:50:29 -06:00
|
|
|
maintainers = with maintainers; [ siph ];
|
|
|
|
};
|
|
|
|
}
|