From 1ca183731c4d0eb61b7b5cd4596cf856744c1d61 Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Wed, 6 Nov 2024 07:15:31 +0100 Subject: [PATCH] eintopf: reformat --- pkgs/by-name/ei/eintopf/package.nix | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pkgs/by-name/ei/eintopf/package.nix b/pkgs/by-name/ei/eintopf/package.nix index 50e4b4202321..8cb08bc68d56 100644 --- a/pkgs/by-name/ei/eintopf/package.nix +++ b/pkgs/by-name/ei/eintopf/package.nix @@ -1,8 +1,9 @@ -{ lib -, buildGoModule -, fetchFromGitea -, callPackage -, nixosTests +{ + lib, + buildGoModule, + fetchFromGitea, + callPackage, + nixosTests, }: let @@ -44,12 +45,11 @@ buildGoModule rec { inherit (nixosTests) eintopf; }; - meta = with lib; { + meta = { description = "A calendar for Stuttgart, showing events, groups and places"; homepage = "https://codeberg.org/Klasse-Methode/eintopf"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ onny ]; - platforms = platforms.unix; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ onny ]; + platforms = lib.platforms.unix; }; } -