packages: Format with nixfmt-rfc-style

This commit is contained in:
Donovan Glover 2024-08-03 13:41:16 -04:00
parent d963032159
commit 4f8625c1bf
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
10 changed files with 46 additions and 38 deletions

View File

@ -1,6 +1,7 @@
{ lib {
, stdenvNoCC lib,
, fetchFromGitHub stdenvNoCC,
fetchFromGitHub,
}: }:
stdenvNoCC.mkDerivation { stdenvNoCC.mkDerivation {

View File

@ -1,6 +1,7 @@
{ lib {
, buildNpmPackage lib,
, fetchFromGitHub buildNpmPackage,
fetchFromGitHub,
}: }:
buildNpmPackage rec { buildNpmPackage rec {

View File

@ -1,6 +1,7 @@
{ lib {
, vimUtils lib,
, fetchFromGitHub vimUtils,
fetchFromGitHub,
}: }:
vimUtils.buildVimPlugin { vimUtils.buildVimPlugin {

View File

@ -1,6 +1,7 @@
{ lib {
, stdenvNoCC lib,
, fetchzip stdenvNoCC,
fetchzip,
}: }:
stdenvNoCC.mkDerivation { stdenvNoCC.mkDerivation {

View File

@ -1,6 +1,7 @@
{ lib {
, rustPlatform lib,
, fetchFromGitHub rustPlatform,
fetchFromGitHub,
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {

View File

@ -1,6 +1,7 @@
{ lib {
, buildNpmPackage lib,
, fetchurl buildNpmPackage,
fetchurl,
}: }:
buildNpmPackage rec { buildNpmPackage rec {

View File

@ -1,6 +1,7 @@
{ lib {
, stdenvNoCC lib,
, fetchzip stdenvNoCC,
fetchzip,
}: }:
stdenvNoCC.mkDerivation { stdenvNoCC.mkDerivation {

View File

@ -1,9 +1,10 @@
{ lib {
, stdenv lib,
, fetchFromGitHub stdenv,
, meson fetchFromGitHub,
, ninja meson,
, pkg-config ninja,
pkg-config,
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {

View File

@ -1,8 +1,9 @@
{ lib {
, rustPlatform lib,
, fetchFromGitHub rustPlatform,
, pkg-config fetchFromGitHub,
, cmake pkg-config,
cmake,
}: }:
rustPlatform.buildRustPackage { rustPlatform.buildRustPackage {
@ -18,9 +19,7 @@ rustPlatform.buildRustPackage {
cargoHash = "sha256-/00WGuuxtwtpNuEEeapJhVedbg3RMUtTEQbYYu518po="; cargoHash = "sha256-/00WGuuxtwtpNuEEeapJhVedbg3RMUtTEQbYYu518po=";
cargoPatches = [ cargoPatches = [ ../assets/rmpc-support-older-rustc.patch ];
../assets/rmpc-support-older-rustc.patch
];
nativeBuildInputs = [ nativeBuildInputs = [
pkg-config pkg-config

View File

@ -1,6 +1,7 @@
{ lib {
, stdenvNoCC lib,
, libwebp stdenvNoCC,
libwebp,
}: }:
stdenvNoCC.mkDerivation { stdenvNoCC.mkDerivation {