treewide: format all files

This commit is contained in:
DavHau
2023-07-12 19:50:23 +02:00
parent 4036df90d2
commit 5d04a17ecd
7 changed files with 42 additions and 25 deletions

View File

@@ -1,8 +1,8 @@
{ lib
, buildGoModule
, fetchFromGitHub
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "go-ssb";
version = "0.2.1";
@@ -17,7 +17,7 @@ buildGoModule rec {
vendorHash = "sha256-ZytuWFre7Cz6Qt01tLQoPEuNzDIyoC938OkdIrU8nZo=";
ldflags = [ "-s" "-w" ];
ldflags = ["-s" "-w"];
# take very long
doCheck = false;
@@ -26,6 +26,6 @@ buildGoModule rec {
description = "Go implementation of ssb (work in progress)";
homepage = "https://github.com/ssbc/go-ssb";
license = licenses.mit;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [];
};
}