From d38d66a8fadf2c41fc6cd42548bdc251bdf80ffa Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Tue, 5 Nov 2024 19:46:32 -0600 Subject: [PATCH] telepathy-glib: format --- .../libraries/telepathy/glib/default.nix | 34 ++++++++++++------- 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/pkgs/development/libraries/telepathy/glib/default.nix b/pkgs/development/libraries/telepathy/glib/default.nix index e1510fca92a6..239cfb0ffa14 100644 --- a/pkgs/development/libraries/telepathy/glib/default.nix +++ b/pkgs/development/libraries/telepathy/glib/default.nix @@ -1,21 +1,25 @@ -{ lib -, stdenv -, fetchurl -, dbus-glib -, glib -, python3 -, pkg-config -, libxslt -, gobject-introspection -, vala -, glibcLocales +{ + lib, + stdenv, + fetchurl, + dbus-glib, + glib, + python3, + pkg-config, + libxslt, + gobject-introspection, + vala, + glibcLocales, }: stdenv.mkDerivation rec { pname = "telepathy-glib"; version = "0.24.2"; - outputs = [ "out" "dev" ]; + outputs = [ + "out" + "dev" + ]; src = fetchurl { url = "${meta.homepage}/releases/telepathy-glib/${pname}-${version}.tar.gz"; @@ -55,6 +59,10 @@ stdenv.mkDerivation rec { meta = with lib; { homepage = "https://telepathy.freedesktop.org"; platforms = platforms.unix; - license = with licenses; [ bsd2 bsd3 lgpl21Plus ]; + license = with licenses; [ + bsd2 + bsd3 + lgpl21Plus + ]; }; }