From fe7822338a088ae67572d8cb46cbacc7a87cb24a Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Fri, 26 Apr 2024 22:00:24 -0400 Subject: [PATCH] opencc: format with nixfmt-rfc-style --- pkgs/tools/text/opencc/default.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/text/opencc/default.nix b/pkgs/tools/text/opencc/default.nix index 4093554604f6..53c36603afa2 100644 --- a/pkgs/tools/text/opencc/default.nix +++ b/pkgs/tools/text/opencc/default.nix @@ -1,4 +1,10 @@ -{ lib, stdenv, fetchFromGitHub, cmake, python3 }: +{ + lib, + stdenv, + fetchFromGitHub, + cmake, + python3, +}: stdenv.mkDerivation rec { pname = "opencc"; @@ -11,7 +17,10 @@ stdenv.mkDerivation rec { sha256 = "sha256-N7nazA0xoQ2ewOGDiJg1vBBYMdF1/qiCfNjG5CFFbuk="; }; - nativeBuildInputs = [ cmake python3 ]; + nativeBuildInputs = [ + cmake + python3 + ]; meta = with lib; { homepage = "https://github.com/BYVoid/OpenCC";