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

This commit is contained in:
Coutinho de Souza 2024-05-16 20:26:34 -03:00
parent 93b01fe232
commit 3653812bec
No known key found for this signature in database
GPG Key ID: 59081FCB8F9AABB5

View File

@ -1,8 +1,14 @@
{ lib, stdenv, hare, hareThirdParty, fetchFromSourcehut }:
{
lib,
stdenv,
hare,
hareThirdParty,
fetchFromSourcehut,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "hare-png";
version = "unstable-2023-09-09";
version = "0-unstable-2023-09-09";
src = fetchFromSourcehut {
owner = "~sircmpwn";
@ -26,7 +32,6 @@ stdenv.mkDerivation (finalAttrs: {
description = "PNG implementation for Hare";
license = with licenses; [ mpl20 ];
maintainers = with maintainers; [ starzation ];
inherit (hare.meta) platforms badPlatforms;
};
})