hareThirdParty.hare-compress: format with nixfmt-rfc-style

Changed files
+8 -3
pkgs
development
hare-third-party
hare-compress
+8 -3
pkgs/development/hare-third-party/hare-compress/default.nix
···
-
{ lib, stdenv, hare, harec, fetchFromSourcehut }:
+
{
+
lib,
+
stdenv,
+
hare,
+
harec,
+
fetchFromSourcehut,
+
}:
stdenv.mkDerivation (finalAttrs: {
pname = "hare-compress";
-
version = "unstable-2023-11-01";
+
version = "0-unstable-2023-11-01";
src = fetchFromSourcehut {
owner = "~sircmpwn";
···
description = "Compression algorithms for Hare";
license = with licenses; [ mpl20 ];
maintainers = with maintainers; [ starzation ];
-
inherit (harec.meta) platforms badPlatforms;
};
})