undmg: format

This commit is contained in:
DontEatOreo
2024-08-02 20:51:53 +03:00
committed by Florian Brandes
parent 02a77adbf7
commit c8a2402c0f

View File

@@ -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";
};
}