mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 03:53:47 +00:00
diesel-cli: format with nixfmt
This commit is contained in:
parent
8ad3581ac9
commit
78a212761a
@ -1,23 +1,25 @@
|
||||
{ lib
|
||||
, sqliteSupport ? true
|
||||
, postgresqlSupport ? true
|
||||
, mysqlSupport ? true
|
||||
, rustPlatform
|
||||
, fetchCrate
|
||||
, installShellFiles
|
||||
, darwin
|
||||
, pkg-config
|
||||
, openssl
|
||||
, stdenv
|
||||
, libiconv
|
||||
, sqlite
|
||||
, postgresql
|
||||
, libmysqlclient
|
||||
, zlib
|
||||
{
|
||||
lib,
|
||||
sqliteSupport ? true,
|
||||
postgresqlSupport ? true,
|
||||
mysqlSupport ? true,
|
||||
rustPlatform,
|
||||
fetchCrate,
|
||||
installShellFiles,
|
||||
darwin,
|
||||
pkg-config,
|
||||
openssl,
|
||||
stdenv,
|
||||
libiconv,
|
||||
sqlite,
|
||||
postgresql,
|
||||
libmysqlclient,
|
||||
zlib,
|
||||
}:
|
||||
|
||||
assert lib.assertMsg (sqliteSupport == true || postgresqlSupport == true || mysqlSupport == true)
|
||||
"support for at least one database must be enabled";
|
||||
assert lib.assertMsg (
|
||||
sqliteSupport == true || postgresqlSupport == true || mysqlSupport == true
|
||||
) "support for at least one database must be enabled";
|
||||
|
||||
let
|
||||
inherit (lib) optional optionals optionalString;
|
||||
@ -35,31 +37,44 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
cargoHash = "sha256-nPmUCww8sOJwnG7+uIflLPgT87xPX0s7g0AcuDKhY2I=";
|
||||
|
||||
nativeBuildInputs = [ installShellFiles pkg-config ];
|
||||
nativeBuildInputs = [
|
||||
installShellFiles
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [ openssl ]
|
||||
buildInputs =
|
||||
[ openssl ]
|
||||
++ optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security
|
||||
++ optional (stdenv.isDarwin && mysqlSupport) libiconv
|
||||
++ optional sqliteSupport sqlite
|
||||
++ optional postgresqlSupport postgresql
|
||||
++ optionals mysqlSupport [ libmysqlclient zlib ];
|
||||
++ optionals mysqlSupport [
|
||||
libmysqlclient
|
||||
zlib
|
||||
];
|
||||
|
||||
buildNoDefaultFeatures = true;
|
||||
buildFeatures = optional sqliteSupport "sqlite"
|
||||
buildFeatures =
|
||||
optional sqliteSupport "sqlite"
|
||||
++ optional postgresqlSupport "postgres"
|
||||
++ optional mysqlSupport "mysql";
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
'' + optionalString sqliteSupport ''
|
||||
cargo check --features sqlite
|
||||
'' + optionalString postgresqlSupport ''
|
||||
cargo check --features postgres
|
||||
'' + optionalString mysqlSupport ''
|
||||
cargo check --features mysql
|
||||
'' + ''
|
||||
runHook postCheck
|
||||
'';
|
||||
checkPhase =
|
||||
''
|
||||
runHook preCheck
|
||||
''
|
||||
+ optionalString sqliteSupport ''
|
||||
cargo check --features sqlite
|
||||
''
|
||||
+ optionalString postgresqlSupport ''
|
||||
cargo check --features postgres
|
||||
''
|
||||
+ optionalString mysqlSupport ''
|
||||
cargo check --features mysql
|
||||
''
|
||||
+ ''
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
installShellCompletion --cmd diesel \
|
||||
@ -75,7 +90,10 @@ rustPlatform.buildRustPackage rec {
|
||||
meta = with lib; {
|
||||
description = "Database tool for working with Rust projects that use Diesel";
|
||||
homepage = "https://github.com/diesel-rs/diesel/tree/master/diesel_cli";
|
||||
license = with licenses; [ mit asl20 ];
|
||||
license = with licenses; [
|
||||
mit
|
||||
asl20
|
||||
];
|
||||
maintainers = with maintainers; [ ];
|
||||
mainProgram = "diesel";
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user