Skip to content

Commit

Permalink
edgedb: format with nixfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
0x50F1A committed May 7, 2024
1 parent 1970f0f commit 0f0c2eb
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions pkgs/tools/networking/edgedb/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,22 @@ rustPlatform.buildRustPackage rec {
};
};

nativeBuildInputs = [makeBinaryWrapper pkg-config perl];
nativeBuildInputs = [
makeBinaryWrapper
pkg-config
perl
];

buildInputs =
[
curl
]
++ lib.optionals stdenv.isDarwin [CoreServices Security libiconv xz];
[ curl ]
++ lib.optionals stdenv.isDarwin [
CoreServices
Security
libiconv
xz
];

checkFeatures = [];
checkFeatures = [ ];

patches = [
(substituteAll {
Expand All @@ -75,12 +82,13 @@ rustPlatform.buildRustPackage rec {
homepage = "https://www.edgedb.com/docs/cli/index";
license = with licenses; [
asl20
/*
or
*/
# or
mit
];
maintainers = with maintainers; [ahirner kirillrdy];
maintainers = with maintainers; [
ahirner
kirillrdy
];
mainProgram = "edgedb";
};
}

0 comments on commit 0f0c2eb

Please sign in to comment.