opencc: format with nixfmt-rfc-style

This commit is contained in:
Nick Cao 2024-04-26 22:00:24 -04:00
parent b809790244
commit fe7822338a
No known key found for this signature in database
1 changed files with 11 additions and 2 deletions

View File

@ -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";