Merge pull request #243849 from siph/diesel-cli-ext

diesel-cli-ext: init at 0.3.13
This commit is contained in:
Sandro 2023-07-20 21:07:09 +02:00 committed by GitHub
commit d8f9925739
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -4814,6 +4814,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 { };