From c8a2402c0f9f565c1e9b34ec01fc29da5427f5cc Mon Sep 17 00:00:00 2001 From: DontEatOreo <57304299+DontEatOreo@users.noreply.github.com> Date: Fri, 2 Aug 2024 20:51:53 +0300 Subject: [PATCH] undmg: format --- pkgs/tools/archivers/undmg/default.nix | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/archivers/undmg/default.nix b/pkgs/tools/archivers/undmg/default.nix index 9fe61d594416..9c28024b56e6 100644 --- a/pkgs/tools/archivers/undmg/default.nix +++ b/pkgs/tools/archivers/undmg/default.nix @@ -1,4 +1,12 @@ -{ lib, stdenv, fetchFromGitHub, zlib, bzip2, lzfse, pkg-config }: +{ + lib, + stdenv, + fetchFromGitHub, + zlib, + bzip2, + lzfse, + pkg-config, +}: stdenv.mkDerivation rec { version = "1.1.0"; @@ -13,7 +21,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; - buildInputs = [ zlib bzip2 lzfse ]; + buildInputs = [ + zlib + bzip2 + lzfse + ]; setupHook = ./setup-hook.sh; @@ -24,7 +36,10 @@ stdenv.mkDerivation rec { description = "Extract a DMG file"; license = licenses.gpl3; platforms = platforms.all; - maintainers = with maintainers; [ matthewbauer lnl7 ]; + maintainers = with maintainers; [ + matthewbauer + lnl7 + ]; mainProgram = "undmg"; }; }