diesel-cli-ext: init at 0.3.13

This commit is contained in:
siph 2023-07-16 13:50:29 -06:00
parent 6cee3b5893
commit 75e44fae31
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,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 ];
};
}

View File

@ -4791,6 +4791,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
diesel-cli-ext = callPackage ../development/tools/diesel-cli-ext { };
refinery-cli = callPackage ../development/tools/refinery-cli { };
digitemp = callPackage ../tools/misc/digitemp { };