about summary refs log tree commit diff
path: root/pkgs/development/tools/diesel-cli-ext/default.nix
blob: 3e784090398be870a0fd3cd9a0b92d0e7216c9c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ 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 ];
    maintainers = with maintainers; [ siph ];
  };
}