xml-security-c: format with nixfmt

This commit is contained in:
TomaSajt 2024-05-08 14:35:36 +02:00
parent 818f65922c
commit e7d0b599e1
No known key found for this signature in database
GPG Key ID: F011163C050122A1
1 changed files with 15 additions and 2 deletions

View File

@ -1,4 +1,12 @@
{ lib, stdenv, fetchurl, xalanc, xercesc, openssl, pkg-config }:
{
lib,
stdenv,
fetchurl,
xalanc,
xercesc,
openssl,
pkg-config,
}:
stdenv.mkDerivation rec {
pname = "xml-security-c";
@ -16,7 +24,12 @@ stdenv.mkDerivation rec {
];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ xalanc xercesc openssl ];
buildInputs = [
xalanc
xercesc
openssl
];
meta = {
homepage = "https://santuario.apache.org/";