liberasurecode: format with nixfmt-rfc-style

This commit is contained in:
Anthony ROUSSEL 2024-09-01 21:33:10 +02:00
parent 6e5af4a448
commit 7fc4e0e7c6

View File

@ -1,17 +1,22 @@
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, doxygen
, installShellFiles
, zlib
{
lib,
stdenv,
autoreconfHook,
doxygen,
fetchFromGitHub,
installShellFiles,
zlib,
}:
stdenv.mkDerivation rec {
pname = "liberasurecode";
version = "1.6.3";
outputs = [ "out" "dev" "doc" ];
outputs = [
"out"
"dev"
"doc"
];
src = fetchFromGitHub {
owner = "openstack";
@ -28,7 +33,11 @@ stdenv.mkDerivation rec {
--replace "-Werror" ""
'';
nativeBuildInputs = [ autoreconfHook doxygen installShellFiles ];
nativeBuildInputs = [
autoreconfHook
doxygen
installShellFiles
];
buildInputs = [ zlib ];