treewide: reformat
This commit is contained in:
parent
07a57da4df
commit
5678291741
4 changed files with 25 additions and 11 deletions
|
@ -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";
|
||||||
|
|
|
@ -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";
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{ lib
|
{
|
||||||
, fetchFromGitHub
|
lib,
|
||||||
, buildGoModule
|
fetchFromGitHub,
|
||||||
|
buildGoModule,
|
||||||
}:
|
}:
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "gotestsum";
|
pname = "gotestsum";
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{ lib
|
{
|
||||||
, buildGoModule
|
lib,
|
||||||
, fetchFromGitHub
|
buildGoModule,
|
||||||
|
fetchFromGitHub,
|
||||||
}:
|
}:
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "goflow2";
|
pname = "goflow2";
|
||||||
|
|
Loading…
Reference in a new issue