portfolio: format with nixfmt-rfc-style

This commit is contained in:
Shawn8901
2024-07-07 20:56:04 +02:00
committed by Florian Brandes
parent 54542fe146
commit bd86b27451

View File

@@ -1,17 +1,18 @@
{ lib {
, stdenv lib,
, autoPatchelfHook stdenv,
, fetchurl autoPatchelfHook,
, glib-networking fetchurl,
, glibc glib-networking,
, gcc-unwrapped glibc,
, gtk3 gcc-unwrapped,
, jre gtk3,
, libsecret jre,
, makeDesktopItem libsecret,
, webkitgtk makeDesktopItem,
, wrapGAppsHook3 webkitgtk,
, writeScript wrapGAppsHook3,
writeScript,
}: }:
let let
desktopItem = makeDesktopItem { desktopItem = makeDesktopItem {
@@ -23,7 +24,10 @@ let
categories = [ "Office" ]; categories = [ "Office" ];
}; };
runtimeLibs = lib.makeLibraryPath [ gtk3 webkitgtk ]; runtimeLibs = lib.makeLibraryPath [
gtk3
webkitgtk
];
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "PortfolioPerformance"; pname = "PortfolioPerformance";
@@ -73,7 +77,11 @@ stdenv.mkDerivation rec {
homepage = "https://www.portfolio-performance.info/"; homepage = "https://www.portfolio-performance.info/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ]; sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.epl10; license = licenses.epl10;
maintainers = with maintainers; [ kilianar oyren shawn8901 ]; maintainers = with maintainers; [
kilianar
oyren
shawn8901
];
mainProgram = "portfolio"; mainProgram = "portfolio";
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];
}; };