treewide: reformat

This commit is contained in:
isabel 2024-04-28 19:47:16 +01:00
parent 07a57da4df
commit 5678291741
No known key found for this signature in database
GPG key ID: 08A97B9A107A1798
4 changed files with 25 additions and 11 deletions

View file

@ -1,4 +1,9 @@
{ lib, fetchFromGitHub, rustPlatform, git }: {
lib,
fetchFromGitHub,
rustPlatform,
git,
}:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "gitprompt-rs"; pname = "gitprompt-rs";
version = "0.3.0"; version = "0.3.0";

View file

@ -1,4 +1,8 @@
{ lib, buildGoModule, fetchFromGitHub }: {
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec { buildGoModule rec {
pname = "go-toml"; pname = "go-toml";
version = "2.2.1"; version = "2.2.1";
@ -18,7 +22,10 @@ buildGoModule rec {
"cmd/tomltestgen" "cmd/tomltestgen"
]; ];
ldflags = [ "-s" "-w" ]; ldflags = [
"-s"
"-w"
];
meta = with lib; { meta = with lib; {
description = "Go library for the TOML language"; description = "Go library for the TOML language";

View file

@ -1,6 +1,7 @@
{ lib {
, fetchFromGitHub lib,
, buildGoModule fetchFromGitHub,
buildGoModule,
}: }:
buildGoModule rec { buildGoModule rec {
pname = "gotestsum"; pname = "gotestsum";

View file

@ -1,6 +1,7 @@
{ lib {
, buildGoModule lib,
, fetchFromGitHub buildGoModule,
fetchFromGitHub,
}: }:
buildGoModule rec { buildGoModule rec {
pname = "goflow2"; pname = "goflow2";