29 lines
648 B
Nix
29 lines
648 B
Nix
{
|
|
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=";
|
|
};
|
|
|
|
cargoHash = "sha256-Ya7RL3TuQjKkEkggK/ANChtVZRuTaooM+lE3KBZnvYU=";
|
|
|
|
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
|
|
];
|
|
mainProgram = "diesel_ext";
|
|
maintainers = with maintainers; [ siph ];
|
|
};
|
|
}
|