Unverified Commit 718581f5 authored by huantian's avatar huantian
Browse files

scarab: format with nixfmt

parent 4d67e9b5
Loading
Loading
Loading
Loading
+26 −23
Original line number Diff line number Diff line
{ lib
, buildDotnetModule
, fetchFromGitHub
, glibc
, zlib
, gtk3
, copyDesktopItems
, icoutils
, wrapGAppsHook3
, makeDesktopItem
{
  lib,
  buildDotnetModule,
  fetchFromGitHub,
  glibc,
  zlib,
  gtk3,
  copyDesktopItems,
  icoutils,
  wrapGAppsHook3,
  makeDesktopItem,
}:

buildDotnetModule rec {
@@ -58,7 +59,8 @@ buildDotnetModule rec {
    done
  '';

  desktopItems = [(makeDesktopItem {
  desktopItems = [
    (makeDesktopItem {
      desktopName = "Scarab";
      name = "scarab";
      exec = "Scarab";
@@ -66,18 +68,19 @@ buildDotnetModule rec {
      comment = meta.description;
      type = "Application";
      categories = [ "Game" ];
  })];
    })
  ];

  passthru.updateScript = ./update.sh;

  meta = with lib; {
  meta = {
    description = "Hollow Knight mod installer and manager";
    homepage = "https://github.com/fifty-six/Scarab";
    downloadPage = "https://github.com/fifty-six/Scarab/releases";
    changelog = "https://github.com/fifty-six/Scarab/releases/tag/v${version}";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ huantian ];
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ huantian ];
    mainProgram = "Scarab";
    platforms = platforms.linux;
    platforms = lib.platforms.linux;
  };
}